mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 00:15:51 +00:00
* Add schema generation and remove default values * fix monitoring schema generation * fix default values Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"external": {
|
|
"type": "boolean",
|
|
"description": "Enable external access from outside the cluster",
|
|
"default": false
|
|
},
|
|
"size": {
|
|
"type": "string",
|
|
"description": "Persistent Volume size",
|
|
"default": "10Gi"
|
|
},
|
|
"haproxy": {
|
|
"type": "object",
|
|
"properties": {
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of HAProxy replicas",
|
|
"default": 2
|
|
}
|
|
}
|
|
},
|
|
"nginx": {
|
|
"type": "object",
|
|
"properties": {
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of Nginx replicas",
|
|
"default": 2
|
|
}
|
|
}
|
|
},
|
|
"endpoints": {
|
|
"type": "array",
|
|
"description": "Endpoints configuration",
|
|
"default": [],
|
|
"items": {}
|
|
}
|
|
}
|
|
} |