From 4c35c489b3855b9ad6ea796171028da6e4280cd2 Mon Sep 17 00:00:00 2001 From: Jonas Juselius Date: Mon, 10 Jun 2024 10:41:51 +0200 Subject: [PATCH] fix: tweak redis resources --- kustomizations/redis/values-prod.yaml | 21 +++++++++++++++++++++ kustomizations/redis/values-staging.yaml | 10 ++++++++++ 2 files changed, 31 insertions(+) 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