mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 08:17:59 +00:00
* Add schema generation and remove default values * fix monitoring schema generation * fix default values Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"title": "Chart Values",
|
|
"type": "object",
|
|
"properties": {
|
|
"external": {
|
|
"type": "boolean",
|
|
"description": "Enable external access from outside the cluster",
|
|
"default": false
|
|
},
|
|
"kafka": {
|
|
"type": "object",
|
|
"properties": {
|
|
"size": {
|
|
"type": "string",
|
|
"description": "Persistent Volume size for Kafka",
|
|
"default": "10Gi"
|
|
},
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of Kafka replicas",
|
|
"default": 3
|
|
}
|
|
}
|
|
},
|
|
"zookeeper": {
|
|
"type": "object",
|
|
"properties": {
|
|
"size": {
|
|
"type": "string",
|
|
"description": "Persistent Volume size for ZooKeeper",
|
|
"default": "5Gi"
|
|
},
|
|
"replicas": {
|
|
"type": "number",
|
|
"description": "Number of ZooKeeper replicas",
|
|
"default": 3
|
|
}
|
|
}
|
|
},
|
|
"topics": {
|
|
"type": "array",
|
|
"description": "Topics configuration",
|
|
"default": [],
|
|
"items": {}
|
|
}
|
|
}
|
|
} |