Weave Net · Schema

IPAMStatus

Status of the IPAM subsystem

ContainersNetworkingKubernetesDockerIPAMOpen SourceCNCF

Properties

Name Type Description
status string IPAM status
subnet string Default subnet for allocation
range_num_ips integer Total number of IPs in range
owned_num_ips integer Number of IPs owned by this peer
View JSON Schema on GitHub

JSON Schema

weave-net-ipam-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/weave-net/refs/heads/main/json-schema/weave-net-ipam-status-schema.json",
  "title": "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": "integer",
      "description": "Total number of IPs in range",
      "example": 1048576
    },
    "owned_num_ips": {
      "type": "integer",
      "description": "Number of IPs owned by this peer",
      "example": 524288
    }
  }
}