Skip to content

Commit

Permalink
enable redis cluster (#721)
Browse files Browse the repository at this point in the history
* enable redis cluster

* add prod setup doc ref
  • Loading branch information
amitsagtani97 authored Jul 24, 2024
1 parent f691469 commit a37d26d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions values/databases-ephemeral/prod-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,32 @@
tags:
cassandra-ephemeral: false
elasticsearch-ephemeral: false

redis-ephemeral:
redis-ephemeral:
usePassword: false
cluster:
enabled: true
# https://artifacthub.io/packages/helm/bitnami-aks/redis/11.3.4#production-configuration
# default slaveCount is 2
slaveCount: 3
master:
persistence:
enabled: false
resources:
limits:
cpu: "1000m"
memory: "1024Mi"
requests:
cpu: "500m"
memory: "512Mi"
slave:
persistence:
enabled: false
resources:
limits:
cpu: "1000m"
memory: "1024Mi"
requests:
cpu: "500m"
memory: "512Mi"

0 comments on commit a37d26d

Please sign in to comment.