Skip to content

Commit

Permalink
chore: Fixing pre-delete-webhook template for missing imagePullSecrets (
Browse files Browse the repository at this point in the history
#1183)

Fixing pre-delete-webhook template for missing imagePullSecrets
  • Loading branch information
rollandf authored Nov 27, 2024
2 parents 406d9eb + 38db93e commit 295f5f9
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ spec:
template:
spec:
serviceAccountName: {{ include "sriov-network-operator.fullname" . }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.imagePullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
containers:
- name: cleanup
image: {{ .Values.images.operator }}
Expand Down

0 comments on commit 295f5f9

Please sign in to comment.