From 6e0202ca513a06933e00dc3fe4e170f65e15ca24 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Mon, 18 Aug 2025 12:10:12 +0800 Subject: [PATCH] fix: correct image key references in deployment template for secret operator - Updated the deployment template to use the correct key `secretOperator` instead of `secret-operator` for image configuration. Signed-off-by: zhenyus --- .../helm-pkg/secret-operator/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freeleaps-secret-operator/helm-pkg/secret-operator/templates/deployment.yaml b/freeleaps-secret-operator/helm-pkg/secret-operator/templates/deployment.yaml index 97e05e33..042976d2 100644 --- a/freeleaps-secret-operator/helm-pkg/secret-operator/templates/deployment.yaml +++ b/freeleaps-secret-operator/helm-pkg/secret-operator/templates/deployment.yaml @@ -26,8 +26,8 @@ spec: - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} - image: "{{ .Values.secret-operator.image.repository }}:{{ .Values.secret-operator.image.tag | default .Chart.AppVersion }}" - imagePullPolicy: {{ .Values.secret-operator.image.pullPolicy }} + image: "{{ .Values.secretOperator.image.repository }}:{{ .Values.secretOperator.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.secretOperator.image.pullPolicy }} ports: - name: api containerPort: {{ .Values.operator.apiServerPort }}