mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-19 23:10:14 +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>
73 lines
2.2 KiB
YAML
73 lines
2.2 KiB
YAML
|
|
## @section Common parameters
|
|
|
|
## @param external Enable external access from outside the cluster
|
|
## @param replicas Persistent Volume size for NATS
|
|
## @param storageClass StorageClass used to store the data
|
|
##
|
|
external: false
|
|
replicas: 2
|
|
storageClass: ""
|
|
## @param users [object] Users configuration
|
|
## Example:
|
|
## users:
|
|
## user1:
|
|
## password: strongpassword
|
|
## user2: {}
|
|
users: {}
|
|
|
|
jetstream:
|
|
## @param jetstream.size Jetstream persistent storage size
|
|
## Specifies the size of the persistent storage for Jetstream (message store).
|
|
## Default: 10Gi
|
|
size: 10Gi
|
|
|
|
## @param jetstream.enabled Enable or disable Jetstream
|
|
## Set to true to enable Jetstream for persistent messaging in NATS.
|
|
## Default: true
|
|
enabled: true
|
|
|
|
config:
|
|
## @param config.merge Additional configuration to merge into NATS config
|
|
## Allows you to customize NATS server settings by merging additional configurations.
|
|
## For example, you can add extra parameters, configure authentication, or set custom settings.
|
|
## Default: {}
|
|
## example:
|
|
##
|
|
## merge:
|
|
## $include: ./my-config.conf
|
|
## zzz$include: ./my-config-last.conf
|
|
## server_name: nats
|
|
## authorization:
|
|
## token: << $TOKEN >>
|
|
## jetstream:
|
|
## max_memory_store: << 1GB >>
|
|
##
|
|
## will yield the config:
|
|
## {
|
|
## include ./my-config.conf;
|
|
## "authorization": {
|
|
## "token": $TOKEN
|
|
## },
|
|
## "jetstream": {
|
|
## "max_memory_store": 1GB
|
|
## },
|
|
## "server_name": "nats",
|
|
## include ./my-config-last.conf;
|
|
## }
|
|
merge: {}
|
|
## @param config.resolver Additional configuration to merge into NATS config
|
|
## Allows you to customize NATS server settings by merging resolver configurations.
|
|
## Default: {}
|
|
## Example see: https://github.com/nats-io/k8s/blob/main/helm/charts/nats/values.yaml#L247
|
|
resolver: {}
|
|
|
|
## @param resources Explicit CPU and memory configuration for each NATS 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"
|