mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
* Add schema generation and remove default values * fix monitoring schema generation * fix default values Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
26 lines
766 B
JSON
26 lines
766 B
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"host": {
|
|
"type": "string",
|
|
"description": "The hostname used to access tenant services (defaults to using the tenant name as a subdomain for it's parent tenant host).",
|
|
"default": ""
|
|
},
|
|
"etcd": {
|
|
"type": "boolean",
|
|
"description": "Deploy own Etcd cluster",
|
|
"default": false
|
|
},
|
|
"monitoring": {
|
|
"type": "boolean",
|
|
"description": "Deploy own Monitoring Stack",
|
|
"default": false
|
|
},
|
|
"ingress": {
|
|
"type": "boolean",
|
|
"description": "Deploy own Ingress Controller",
|
|
"default": false
|
|
}
|
|
}
|
|
} |