@jkcfg/kubernetes
Version:
jk Kubernetes library
25 lines • 479 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"name",
"value"
],
"type": "object",
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"type": [
"string",
"null"
],
"description": "The header field name"
},
"value": {
"type": [
"string",
"null"
],
"description": "The header field value"
}
}
}