Skip to content

Commit 0fc133a

Browse files
authored
Merge pull request #121 from negative-creep90/master
add imagePullSecrets to helm chart
2 parents b9d4935 + 565234e commit 0fc133a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

charts/cluster-secret/templates/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ spec:
2525
spec:
2626
securityContext:
2727
runAsUser: 100 # 100 is set by the container and can NOT be changed here - this would result in a getpwuid() error
28+
{{- with .Values.imagePullSecrets }}
29+
imagePullSecrets:
30+
{{- toYaml . | nindent 8 }}
31+
{{- end }}
2832
containers:
2933
- env:
3034
- name: KUBERNETES_CLUSTER_DOMAIN

charts/cluster-secret/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
imagePullSecrets: []
12
image:
23
repository: quay.io/clustersecret/clustersecret
34
tag: 0.0.10

0 commit comments

Comments
 (0)