helm-charts/charts/library/common/schemas/rawResource.json
2024-07-29 12:50:49 +00:00

29 lines
565 B
JSON

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