From 2585d50b291446c407ddc09ef8888b0bed20b50f Mon Sep 17 00:00:00 2001 From: Tchoupinax Date: Fri, 27 Oct 2023 20:42:35 +0200 Subject: [PATCH] feat(helm-chart): repair usage of resources key --- helm-charts/infisical/templates/backend-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helm-charts/infisical/templates/backend-deployment.yaml b/helm-charts/infisical/templates/backend-deployment.yaml index dced5f0a2..036e168a3 100644 --- a/helm-charts/infisical/templates/backend-deployment.yaml +++ b/helm-charts/infisical/templates/backend-deployment.yaml @@ -44,9 +44,9 @@ spec: envFrom: - secretRef: name: {{ $backend.kubeSecretRef | default (include "infisical.backend.fullname" .) }} - # {{- if $backend.resources }} - # resources: {{- toYaml $backend.resources | nindent 12 }} - # {{- end }} + {{- if $backend.resources }} + resources: {{- toYaml $backend.resources | nindent 12 }} + {{- end }} --- apiVersion: v1