Skip to content
Snippets Groups Projects
Verified Commit 416ecc4c authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(matrix): Add resource requests and limits for redis

This patch adds memory requests and limits to redis in order to allow it
to be deployed with resource quotas enabled.
parent fec2474c
No related branches found
No related tags found
No related merge requests found
......@@ -75,6 +75,23 @@ spec:
sslmode: prefer
redis:
enabled: true
master:
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
replica:
replicaCount: 1
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
persistence:
enabled: true
storageClass: longhorn
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment