diff --git a/kustomizations/redis/values-prod.yaml b/kustomizations/redis/values-prod.yaml index bd2ed081..c478ca8e 100644 --- a/kustomizations/redis/values-prod.yaml +++ b/kustomizations/redis/values-prod.yaml @@ -8,3 +8,24 @@ auth: existingSecretPasswordKey: "" existingSecret: prod-redis +master: + resources: + limits: + cpu: 150m + ephemeral-storage: 1024Mi + memory: 192Mi + requests: + cpu: 150m + ephemeral-storage: 50Mi + memory: 128Mi + +replica: + resources: + limits: + cpu: 150m + ephemeral-storage: 1024Mi + memory: 192Mi + requests: + cpu: 150m + ephemeral-storage: 50Mi + memory: 128Mi diff --git a/kustomizations/redis/values-staging.yaml b/kustomizations/redis/values-staging.yaml index f58b8b77..69b62a2f 100644 --- a/kustomizations/redis/values-staging.yaml +++ b/kustomizations/redis/values-staging.yaml @@ -11,3 +11,13 @@ auth: existingSecretPasswordKey: "" existingSecret: staging-redis +master: + resources: + limits: + cpu: 150m + ephemeral-storage: 1024Mi + memory: 192Mi + requests: + cpu: 150m + ephemeral-storage: 50Mi + memory: 128Mi