Files
cozystack/packages/apps/kubernetes/values.schema.json
Andrei Kvapil f25bbd5e74 Add schema generation and remove default values
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-04-26 16:34:17 +02:00

21 lines
654 B
JSON

{
"title": "Chart Values",
"type": "object",
"properties": {
"host": {
"type": "string",
"description": "The hostname used to access the Kubernetes cluster externally (defaults to using the cluster name as a subdomain for the tenant host).",
"default": ""
},
"controlPlane": {
"type": "object",
"properties": {
"replicas": {
"type": "number",
"description": "Number of replicas for Kubernetes contorl-plane components",
"default": 2
}
}
}
}
}