@jkcfg/kubernetes
Version:
jk Kubernetes library
31 lines • 730 B
JSON
{
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": [
"string",
"null"
]
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": [
"boolean",
"null"
]
}
},
"required": [
"key"
],
"type": "object",
"$schema": "http://json-schema.org/schema#"
}