docs(argo-cd): Document scheduling parameters for redis-ha (#2253)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
parent
95310f995b
commit
34663ae9e6
3 changed files with 44 additions and 9 deletions
|
|
@ -1371,12 +1371,17 @@ redis:
|
|||
# -- Prometheus ServiceMonitor annotations
|
||||
annotations: {}
|
||||
|
||||
# This key configures Redis-HA subchart and when enabled (redis-ha.enabled=true)
|
||||
# the custom redis deployment is omitted
|
||||
# Check the redis-ha chart for more properties
|
||||
## Redis-HA subchart replaces custom redis deployment when `redis-ha.enabled=true`
|
||||
# Ref: https://github.com/DandyDeveloper/charts/blob/master/charts/redis-ha/values.yaml
|
||||
redis-ha:
|
||||
# -- Enables the Redis HA subchart and disables the custom Redis single node deployment
|
||||
enabled: false
|
||||
## Redis image
|
||||
image:
|
||||
# -- Redis repository
|
||||
repository: redis
|
||||
# -- Redis tag
|
||||
tag: 7.0.11-alpine
|
||||
## Prometheus redis-exporter sidecar
|
||||
exporter:
|
||||
# -- Enable Prometheus redis-exporter sidecar
|
||||
|
|
@ -1388,6 +1393,7 @@ redis-ha:
|
|||
persistentVolume:
|
||||
# -- Configures persistence on Redis nodes
|
||||
enabled: false
|
||||
## Redis specific configuration options
|
||||
redis:
|
||||
# -- Redis convention for naming the cluster group: must match `^[\\w-\\.]+$` and can be templated
|
||||
masterGroupName: argocd
|
||||
|
|
@ -1397,16 +1403,35 @@ redis-ha:
|
|||
# -- 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: '""'
|
||||
## Enables a HA Proxy for better LoadBalancing / Sentinel Master support. Automatically proxies to Redis master.
|
||||
haproxy:
|
||||
# -- Enabled HAProxy LoadBalancing/Proxy
|
||||
enabled: true
|
||||
metrics:
|
||||
# -- HAProxy enable prometheus metric scraping
|
||||
enabled: true
|
||||
image:
|
||||
# -- Redis tag
|
||||
tag: 7.0.11-alpine
|
||||
# -- Whether the haproxy pods should be forced to run on separate nodes.
|
||||
hardAntiAffinity: true
|
||||
# -- Additional affinities to add to the haproxy pods.
|
||||
additionalAffinities: {}
|
||||
# -- Assign custom [affinity] rules to the haproxy pods.
|
||||
affinity: {}
|
||||
# -- [Tolerations] for use with node taints for haproxy pods.
|
||||
tolerations: []
|
||||
|
||||
# -- Whether the Redis server pods should be forced to run on separate nodes.
|
||||
hardAntiAffinity: true
|
||||
|
||||
# -- Additional affinities to add to the Redis server pods.
|
||||
additionalAffinities: {}
|
||||
|
||||
# -- Assign custom [affinity] rules to the Redis pods.
|
||||
affinity: {}
|
||||
|
||||
# -- [Tolerations] for use with node taints for Redis pods.
|
||||
tolerations: []
|
||||
|
||||
# -- Assign custom [TopologySpreadConstraints] rules to the Redis pods.
|
||||
## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
||||
topologySpreadConstraints:
|
||||
# -- Enable Redis HA topology spread constraints
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue