Skip to content

Commit

Permalink
Merge pull request #809 from heyvister1/fix-pre-delete-wh-pullsecret
Browse files Browse the repository at this point in the history
Fixing pre-delete-webhook template for missing imagePullSecrets
  • Loading branch information
ykulazhenkov authored Nov 25, 2024
2 parents 5fce462 + 9fd85a2 commit 4185aa4
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 4185aa4

Please sign in to comment.