diff --git a/production/helm/loki/templates/admin-api/deployment-admin-api.yaml b/production/helm/loki/templates/admin-api/deployment-admin-api.yaml index 185d6e2a2e8c4..6893a51ac3505 100644 --- a/production/helm/loki/templates/admin-api/deployment-admin-api.yaml +++ b/production/helm/loki/templates/admin-api/deployment-admin-api.yaml @@ -65,9 +65,9 @@ spec: mountPath: {{ .Values.minio.configPathmc }}certs {{ end }} {{- end }} - {{- if .Values.image.pullSecrets }} + {{- if .Values.imagePullSecrets }} imagePullSecrets: - {{- range .Values.image.pullSecrets }} + {{- range .Values.imagePullSecrets }} - name: {{ . }} {{- end }} {{- end }} @@ -78,7 +78,7 @@ spec: containers: - name: admin-api image: "{{ template "loki.image" . }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} + imagePullPolicy: {{ .Values.enterprise.image.pullPolicy }} args: - -target=admin-api - -config.file=/etc/loki/config/config.yaml diff --git a/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml b/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml index c2c873bc43ecf..6965acf83842c 100644 --- a/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml +++ b/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml @@ -44,9 +44,9 @@ spec: {{- toYaml .Values.enterpriseGateway.podSecurityContext | nindent 8 }} initContainers: {{- toYaml .Values.enterpriseGateway.initContainers | nindent 8 }} - {{- if .Values.image.pullSecrets }} + {{- if .Values.imagePullSecrets }} imagePullSecrets: - {{- range .Values.image.pullSecrets }} + {{- range .Values.imagePullSecrets }} - name: {{ . }} {{- end }} {{- end }} @@ -57,7 +57,7 @@ spec: containers: - name: gateway image: "{{ template "loki.image" . }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} + imagePullPolicy: {{ .Values.enterprise.image.pullPolicy }} args: - -target=gateway - -config.file=/etc/loki/config/config.yaml