Weave Net · JSON Structure

Weave Net Ipam Status Structure

Status of the IPAM subsystem

Type: object Properties: 4
ContainersNetworkingKubernetesDockerIPAMOpen SourceCNCF

IPAMStatus is a JSON Structure definition published by Weave Net, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status subnet range_num_ips owned_num_ips

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/weave-net/refs/heads/main/json-structure/weave-net-ipam-status-structure.json",
  "name": "IPAMStatus",
  "description": "Status of the IPAM subsystem",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "IPAM status",
      "example": "ready"
    },
    "subnet": {
      "type": "string",
      "description": "Default subnet for allocation",
      "example": "10.32.0.0/12"
    },
    "range_num_ips": {
      "type": "int32",
      "description": "Total number of IPs in range",
      "example": 1048576
    },
    "owned_num_ips": {
      "type": "int32",
      "description": "Number of IPs owned by this peer",
      "example": 524288
    }
  }
}