Skip to content

Commit

Permalink
chore(redis): Disable persistence and add resource to master
Browse files Browse the repository at this point in the history
  • Loading branch information
mjasion committed Jul 13, 2023
1 parent 807507d commit 2bd0779
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions charts/studio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,32 @@ redis:
# -- Redis name override
fullnameOverride: studio-redis

# -- Redis master configuration
master:
## Redis® master resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param master.resources.limits The resources limits for the Redis® master containers
## @param master.resources.requests The requested resources for the Redis® master containers
resources:
requests:
cpu: "200m"
memory: "512Mi"
limits:
cpu: "1000m"
memory: "2Gi"
# -- Redis master persistence configuration
persistence:
# -- Redis master persistence is disabled
enabled: false

# -- Redis replica configuration
replica:
# -- Redis replica count. 0 for standalone deployment of 1 master and 0 replicas
replicaCount: 0
# -- Redis replica persistence configuration
persistence:
# -- Redis replica persistence is disabled
enabled: false

# -- Redis common configuration to be added into the ConfigMap
commonConfiguration: |-
Expand Down

0 comments on commit 2bd0779

Please sign in to comment.