@jkcfg/kubernetes
Version:
jk Kubernetes library
27 lines • 634 B
JSON
{
"description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.",
"properties": {
"max": {
"description": "max is the end of the range, inclusive.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"min": {
"description": "min is the start of the range, inclusive.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"min",
"max"
],
"type": "object",
"$schema": "http://json-schema.org/schema#"
}