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 <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-08-18 12:10:12 +08:00
parent b8bc7c0d6c
commit 6e0202ca51

View File

@ -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 }}