mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 11:41:06 +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>
57 lines
1.8 KiB
YAML
57 lines
1.8 KiB
YAML
|
|
## @section Common parameters
|
|
|
|
## @param external Enable external access from outside the cluster
|
|
## @param kafka.size Persistent Volume size for Kafka
|
|
## @param kafka.replicas Number of Kafka replicas
|
|
## @param kafka.storageClass StorageClass used to store the Kafka data
|
|
## @param zookeeper.size Persistent Volume size for ZooKeeper
|
|
## @param zookeeper.replicas Number of ZooKeeper replicas
|
|
## @param zookeeper.storageClass StorageClass used to store the ZooKeeper data
|
|
##
|
|
external: false
|
|
kafka:
|
|
size: 10Gi
|
|
replicas: 3
|
|
storageClass: ""
|
|
## @param kafka.resources Explicit CPU and memory configuration for each Kafka replica. When left empty, the preset defined in `resourcesPreset` is applied.
|
|
resources: {}
|
|
# resources:
|
|
# cpu: 4000m
|
|
# memory: 4Gi
|
|
## @param kafka.resourcesPreset Default sizing preset used when `resources` is omitted. Allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge.
|
|
resourcesPreset: "small"
|
|
|
|
zookeeper:
|
|
size: 5Gi
|
|
replicas: 3
|
|
storageClass: ""
|
|
## @param zookeeper.resources Explicit CPU and memory configuration for each Zookeeper replica. When left empty, the preset defined in `resourcesPreset` is applied.
|
|
resources: {}
|
|
# resources:
|
|
# cpu: 4000m
|
|
# memory: 4Gi
|
|
## @param zookeeper.resourcesPreset Default sizing preset used when `resources` is omitted. Allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge.
|
|
resourcesPreset: "small"
|
|
|
|
## @section Configuration parameters
|
|
|
|
## @param topics Topics configuration
|
|
## Example:
|
|
## topics:
|
|
## - name: Results
|
|
## partitions: 1
|
|
## replicas: 3
|
|
## config:
|
|
## min.insync.replicas: 2
|
|
## - name: Orders
|
|
## config:
|
|
## cleanup.policy: compact
|
|
## segment.ms: 3600000
|
|
## max.compaction.lag.ms: 5400000
|
|
## min.insync.replicas: 2
|
|
## partitions: 1
|
|
## replicas: 3
|
|
##
|
|
topics: []
|