mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 05: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>
23 lines
759 B
YAML
23 lines
759 B
YAML
## @section Common parameters
|
|
|
|
## @param external Enable external access from outside the cluster
|
|
## @param size Persistent Volume size
|
|
## @param replicas Number of Redis replicas
|
|
## @param storageClass StorageClass used to store the data
|
|
## @param authEnabled Enable password generation
|
|
##
|
|
external: false
|
|
size: 1Gi
|
|
replicas: 2
|
|
storageClass: ""
|
|
authEnabled: true
|
|
|
|
## @param resources Explicit CPU and memory configuration for each Redis replica. When left empty, the preset defined in `resourcesPreset` is applied.
|
|
resources: {}
|
|
# resources:
|
|
# cpu: 4000m
|
|
# memory: 4Gi
|
|
|
|
## @param resourcesPreset Default sizing preset used when `resources` is omitted. Allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge.
|
|
resourcesPreset: "nano"
|