From 2794b3f209f27249bf3190f5dd0dfc09f0ed0173 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Mon, 18 Aug 2025 11:57:36 +0800 Subject: [PATCH] fix: update key name for secret operator image configuration in Helm values - Changed the key from `secretOperator` to `secret-operator` in `values.yaml`. - Updated the deployment template to reflect the new key name for image configuration. Signed-off-by: zhenyus --- .../helm-pkg/secret-operator/templates/deployment.yaml | 4 ++-- .../helm-pkg/secret-operator/values.yaml | 2 +- 2 files changed, 3 insertions(+), 3 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 042976d2..97e05e33 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.secretOperator.image.repository }}:{{ .Values.secretOperator.image.tag | default .Chart.AppVersion }}" - imagePullPolicy: {{ .Values.secretOperator.image.pullPolicy }} + image: "{{ .Values.secret-operator.image.repository }}:{{ .Values.secret-operator.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.secret-operator.image.pullPolicy }} ports: - name: api containerPort: {{ .Values.operator.apiServerPort }} diff --git a/freeleaps-secret-operator/helm-pkg/secret-operator/values.yaml b/freeleaps-secret-operator/helm-pkg/secret-operator/values.yaml index 2a9c4498..9931bcb6 100644 --- a/freeleaps-secret-operator/helm-pkg/secret-operator/values.yaml +++ b/freeleaps-secret-operator/helm-pkg/secret-operator/values.yaml @@ -1,7 +1,7 @@ # Default values for freeleaps-secret-operator replicaCount: 1 -secretOperator: +secret-operator: image: registry: docker.io repository: freeleaps/secret-operator