Files
library-charts/library/common/schemas/configmap.json
2024-04-08 09:32:08 +02:00

29 lines
540 B
JSON

{
"instance": {
"type": "object",
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"annotations": {
"$ref": "definitions.json#/annotations"
},
"labels": {
"$ref": "definitions.json#/labels"
},
"nameOverride": {
"type": "string"
},
"data": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"required": ["data"]
}
}