From a5649dbb716a96c794ad11fa9147e24f8225252c Mon Sep 17 00:00:00 2001 From: Mathias Knoop Date: Tue, 20 Jun 2023 15:59:32 +0200 Subject: [PATCH] fix: adjust values for timeouts and resources for 'liveness' and 'readiness' actuators to mitigate restarts to to cpu-throttling and respective memory peaks which would possibly yield a restart, too. --- charts/managed-identity-wallet/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/managed-identity-wallet/templates/deployment.yaml b/charts/managed-identity-wallet/templates/deployment.yaml index 3b18b26cf..cd5aefca6 100644 --- a/charts/managed-identity-wallet/templates/deployment.yaml +++ b/charts/managed-identity-wallet/templates/deployment.yaml @@ -76,8 +76,8 @@ spec: cpu: "4" memory: "1Gi" limits: - cpu: "{{ mul .Values.resources.cpu 2 }}m" - memory: "{{ .Values.resources.memory }}Mi" + cpu: "4m" + memory: "1Gi" {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}