Files
library-charts/library/common/values.schema.json
Kjeld Schouten 76a98acce2 simplify for now
2024-04-08 10:02:30 +02:00

31 lines
738 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/truecharts/library-charts/schema-work/library/common/values.schema.json",
"type": "object",
"properties": {
"global": {
"type": "object",
"properties": {
"annotations": {
"$ref": "schemas/definitions.json#/annotations"
},
"nameOverride": {
"type": ["string", "null"]
},
"fullnameOverride": {
"type": ["string", "null"]
},
"labels": {
"$ref": "schemas/definitions.json#/labels"
}
}
},
"service": {
"additionalProperties": {
"$ref": "schemas/service.json#/instance"
}
}
}
}