From f3ac479a83e5ec3974cd4ba4e57e472fdf5d8d0b Mon Sep 17 00:00:00 2001 From: Alessandro Degano Date: Fri, 24 May 2024 17:05:24 +0200 Subject: [PATCH] chore: Remove default resources requests and limits. They might interfere with what is set downstream, e.g. if the admins do not want to set a limit for CPU (which is a best practice). --- helm-chart/amalthea/values.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/helm-chart/amalthea/values.yaml b/helm-chart/amalthea/values.yaml index 04e48525..7ffc0cdf 100644 --- a/helm-chart/amalthea/values.yaml +++ b/helm-chart/amalthea/values.yaml @@ -106,13 +106,13 @@ securityContext: runAsNonRoot: true allowPrivilegeEscalation: false -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi +resources: {} +# limits: +# cpu: 100m +# memory: 128Mi +# requests: +# cpu: 100m +# memory: 128Mi nodeSelector: {}