From ecd79e67cc03b2e1920448c46dc86fe88b947277 Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Wed, 26 Nov 2025 06:08:26 +0200 Subject: [PATCH] Fix deploy --- .../dvirlabs-landing-chart/templates/deployment.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/charts/dvirlabs-landing-chart/templates/deployment.yaml b/charts/dvirlabs-landing-chart/templates/deployment.yaml index 9b2daa4..dea45e7 100644 --- a/charts/dvirlabs-landing-chart/templates/deployment.yaml +++ b/charts/dvirlabs-landing-chart/templates/deployment.yaml @@ -19,6 +19,10 @@ spec: app.kubernetes.io/name: {{ include "dvirlabs-landing.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: dvirlabs-landing image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" @@ -29,6 +33,6 @@ spec: protocol: TCP env: - name: LAB_LINKS - value: {{ toJson .Values.links | quote }} - - + value: '{{ toJson .Values.links }}' + resources: + {{- toYaml .Values.resources | nindent 12 }}