From 0acaed4dc0b8b2354bd0fbd330d572e5d9425a18 Mon Sep 17 00:00:00 2001 From: Archisman Date: Mon, 28 Oct 2024 20:14:14 +0530 Subject: [PATCH] Removed CPU limit for CNPG cluster in KeycloakX helm chart Signed-off-by: Archisman --- argocd-helm-charts/keycloakx/templates/postgresql-cnpg.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/argocd-helm-charts/keycloakx/templates/postgresql-cnpg.yaml b/argocd-helm-charts/keycloakx/templates/postgresql-cnpg.yaml index 0ee88c2d2..6a358dbc7 100644 --- a/argocd-helm-charts/keycloakx/templates/postgresql-cnpg.yaml +++ b/argocd-helm-charts/keycloakx/templates/postgresql-cnpg.yaml @@ -22,9 +22,6 @@ spec: resources: limits: memory: {{ (((.Values.cnpg).resources).limits).memory | default "800Mi" }} - # As its required to add the cpu limit, have added the issue here - # https://github.com/cloudnative-pg/cloudnative-pg/issues/2586 - cpu: "2" requests: memory: {{ (((.Values.cnpg).resources).requests).memory | default "500Mi" }} cpu: {{ (((.Values.cnpg).resources).requests).cpu | default "100m" }}