mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 09:41:04 +00:00
- Change wording for `resources` and `resourcesPreset` variables. - Explain and give exampls of other object-type variables, if their child fields are not annotated. - Fix a few typos, improve wording. - Bump all application charts to ensure that new texts are shown immediately after updating Cozystack. Co-authored-by: Andrei Kvapil <kvapss@gmail.com> Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
98 lines
3.5 KiB
JSON
98 lines
3.5 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": "Explicit CPU and memory configuration for each Kafka replica. When left empty, the preset defined in `resourcesPreset` is applied.",
|
|
"default": {}
|
|
},
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Default sizing preset used when `resources` is omitted. Allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge.",
|
|
"default": "small",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"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": "Explicit CPU and memory configuration for each Zookeeper replica. When left empty, the preset defined in `resourcesPreset` is applied.",
|
|
"default": {}
|
|
},
|
|
"resourcesPreset": {
|
|
"type": "string",
|
|
"description": "Default sizing preset used when `resources` is omitted. Allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge.",
|
|
"default": "small",
|
|
"enum": [
|
|
"none",
|
|
"nano",
|
|
"micro",
|
|
"small",
|
|
"medium",
|
|
"large",
|
|
"xlarge",
|
|
"2xlarge"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"topics": {
|
|
"type": "array",
|
|
"description": "Topics configuration",
|
|
"default": [],
|
|
"items": {}
|
|
}
|
|
}
|
|
}
|