Skip to content

Commit

Permalink
Add imagePullSecretes to the Helm chart
Browse files Browse the repository at this point in the history
Signed-off-by: Armin <[email protected]>
  • Loading branch information
arminc authored and poiana committed Sep 15, 2020
1 parent ad6059b commit c91150d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions falcosidekick/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ spec:
aadpodidbinding: {{ include "falcosidekick.fullname" . }}
{{- end }}
spec:
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.imagePullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
serviceAccountName: {{ include "falcosidekick.fullname" . }}
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
Expand Down
4 changes: 4 additions & 0 deletions falcosidekick/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ image:
tag: 2.13.0
pullPolicy: IfNotPresent

# One or more secrets to be used when pulling images
imagePullSecrets: []
# - registrySecretName

nameOverride: ""
fullnameOverride: ""

Expand Down

0 comments on commit c91150d

Please sign in to comment.