File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 67
67
seccompProfile : # require kube version 1.19+
68
68
type : RuntimeDefault
69
69
serviceAccountName : {{ include "chart.fullname" . }}-controller-manager
70
+ {{- with .Values.controllerManager.manager.image.pullSecrets }}
71
+ imagePullSecrets :
72
+ {{ toYaml . | nindent 8 }}
73
+ {{- end }}
70
74
terminationGracePeriodSeconds : 10
71
75
{{- if .Values.controllerManager.manager.tolerations }}
72
76
tolerations :
75
79
{{- if .Values.controllerManager.manager.nodeSelector }}
76
80
nodeSelector :
77
81
{{ toYaml .Values.controllerManager.manager.nodeSelector | indent 8 }}
78
- {{- end }}
82
+ {{- end }}
Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ controllerManager:
10
10
# So the most safe approach is to use same version as the Chart.
11
11
# When installing chart from the helm repo, every helm package version will have controller image set to chart version
12
12
tag : latest
13
+ # -- The pull secrets to use for operator deployment.
14
+ pullSecrets : []
15
+ # # If you want to set image pull secrets for operator deployment, delete the `[]` in the line above
16
+ # # and uncomment this example block
17
+ # - name: "dockerhub-credentials-secret-name"
13
18
resources :
14
19
limits :
15
20
cpu : 500m
You can’t perform that action at this time.
0 commit comments