Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix image pull secrets for bootloader #15970

Merged
merged 10 commits into from
Aug 25, 2022
6 changes: 0 additions & 6 deletions charts/airbyte-bootloader/Chart.lock

This file was deleted.

8 changes: 4 additions & 4 deletions charts/airbyte-bootloader/templates/pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ metadata:
spec:
serviceAccountName: {{ .Values.global.serviceAccountName }}
{{- if .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.global.imagePullSecrets }}
{{- printf "- name: %s" .name | nindent 2 }}
{{- end }}
imagePullSecrets:
{{- range .Values.global.imagePullSecrets }}
{{- printf "- name: %s" .name | nindent 2 }}
{{- end }}
{{- end }}
restartPolicy: Never
{{- if .Values.nodeSelector }}
Expand Down