mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 08:17:59 +00:00
77 lines
2.8 KiB
JSON
77 lines
2.8 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
|
|
},
|
|
"storageClass": {
|
|
"type": "string",
|
|
"description": "StorageClass used to store the Kafka data",
|
|
"default": ""
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Resources",
|
|
"default": {}
|
|
},
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).",
|
|
"default": "nano"
|
|
}
|
|
}
|
|
},
|
|
"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
|
|
},
|
|
"storageClass": {
|
|
"type": "string",
|
|
"description": "StorageClass used to store the ZooKeeper data",
|
|
"default": ""
|
|
},
|
|
"resources": {
|
|
"type": "object",
|
|
"description": "Resources",
|
|
"default": {}
|
|
},
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).",
|
|
"default": "nano"
|
|
}
|
|
}
|
|
},
|
|
"topics": {
|
|
"type": "array",
|
|
"description": "Topics configuration",
|
|
"default": [],
|
|
"items": {}
|
|
}
|
|
}
|
|
} |