Added missing brackets around .Values.imageCredentials.existingSecret (#107)

This commit is contained in:
Brett Cullen 2022-09-15 15:12:03 -06:00 committed by GitHub
parent 0871e73831
commit 8374ece563
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ data:
{{- if .Values.imageCredentials.enabled }}
imagePullSecrets:
{{- if .Values.imageCredentials.existingSecret }}
- name: .Values.imageCredentials.existingSecret
- name: {{.Values.imageCredentials.existingSecret}}
{{- else }}
- name: {{ include "agentk8sglue.referenceName" . }}-clearml-agent-registry-key
{{- end }}