Skip to content

Commit

Permalink
Redis default values update (#1430)
Browse files Browse the repository at this point in the history
I have set resource requests against each component part of redis and set the 'slaveCount' to 3 (as this actually sets the total number of pods and a minimum of 3 is required for a robust Redis Sentinel deployment, see: https://redis.io/topics/sentinel#fundamental-things-to-know-about-sentinel-before-deploying)
  • Loading branch information
andrewgrundy authored Nov 29, 2021
1 parent 2e03c1a commit 76937b6
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion install/helm/open-match/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,16 +118,29 @@ redis:
masterSet: om-redis-master
port: 26379
usePassword: false
resources:
requests:
memory: 300Mi
cpu: 0.5
master:
disableCommands: [] # don't disable 'FLUSH-' commands
resources:
requests:
memory: 300Mi
cpu: 0.5
slave:
resources:
requests:
memory: 300Mi
cpu: 0.5
metrics:
enabled: true
resources:
requests:
memory: 300Mi
cpu: 0.5
cluster:
slaveCount: 2
slaveCount: 3
serviceAccount:
create: true
sysctlImage:
Expand Down

0 comments on commit 76937b6

Please sign in to comment.