chore(argo-cd): Update redis-ha to 4.16.0 (#1296)
* chore(argo-cd): Update redis-ha to 4.16.0 Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * docs: Add some more imported redis-ha options to README Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
760fe39dc9
commit
c10fd657d0
5 changed files with 83 additions and 7 deletions
|
|
@ -773,6 +773,12 @@ redis-ha:
|
|||
exporter:
|
||||
# -- If `true`, the prometheus exporter sidecar is enabled
|
||||
enabled: true
|
||||
# -- Exporter image
|
||||
# @default -- `nil` (follows subchart default)
|
||||
image: ~
|
||||
# -- Exporter tag
|
||||
# @default -- `nil` (follows subchart default)
|
||||
tag: ~
|
||||
persistentVolume:
|
||||
# -- Configures persistency on Redis nodes
|
||||
enabled: false
|
||||
|
|
@ -783,17 +789,42 @@ redis-ha:
|
|||
# @default -- See [values.yaml]
|
||||
config:
|
||||
# -- Will save the DB if both the given number of seconds and the given number of write operations against the DB occurred. `""` is disabled
|
||||
# @default -- `'""'`
|
||||
save: '""'
|
||||
haproxy:
|
||||
# -- Enabled HAProxy LoadBalancing/Proxy
|
||||
enabled: true
|
||||
image:
|
||||
# -- HAProxy Image Repository
|
||||
# @default -- `nil` (follows subchart default)
|
||||
repository: ~
|
||||
# -- HAProxy Image Tag
|
||||
# @default -- `nil` (follows subchart default)
|
||||
tag: ~
|
||||
metrics:
|
||||
# -- HAProxy enable prometheus metric scraping
|
||||
enabled: true
|
||||
image:
|
||||
# -- Redis image repository
|
||||
# @default -- `nil` (follows subchart default)
|
||||
repository: ~
|
||||
# -- Redis tag
|
||||
tag: 6.2.6-alpine
|
||||
|
||||
## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
||||
topologySpreadConstraints:
|
||||
# -- Enable Redis HA topology spread constraints
|
||||
enabled: false
|
||||
# -- Max skew of pods tolerated
|
||||
# @default -- `""` (defaults to `1`)
|
||||
maxSkew: ""
|
||||
# -- Topology key for spread
|
||||
# @default -- `""` (defaults to `topology.kubernetes.io/zone`)
|
||||
topologyKey: ""
|
||||
# -- Enforcement policy, hard or soft
|
||||
# @default -- `""` (defaults to `ScheduleAnyway`)
|
||||
whenUnsatisfiable: ""
|
||||
|
||||
# External Redis parameters
|
||||
externalRedis:
|
||||
# -- External Redis server host
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue