Files
kubeconform/crdSchemas/ciliumcidrgroup_v2alpha1.json
T
2026-05-05 10:50:30 +01:00

40 lines
1.5 KiB
JSON

{
"description": "CiliumCIDRGroup is a list of external CIDRs (i.e: CIDRs selecting peers\noutside the clusters) that can be referenced as a single entity from\nCiliumNetworkPolicies.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"metadata": {
"type": "object"
},
"spec": {
"properties": {
"externalCIDRs": {
"description": "ExternalCIDRs is a list of CIDRs selecting peers outside the clusters.",
"items": {
"description": "CIDR specifies a block of IP addresses.\nExample: 192.0.2.1/32",
"format": "cidr",
"type": "string"
},
"minItems": 0,
"type": "array"
}
},
"required": [
"externalCIDRs"
],
"type": "object",
"additionalProperties": false
}
},
"required": [
"spec"
],
"type": "object"
}