We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2271eb5 commit 50de020Copy full SHA for 50de020
charts/tke-extend-network-controller/templates/deployment.yaml
@@ -17,6 +17,10 @@ spec:
17
labels:
18
{{- include "tke-extend-network-controller.labels" . | nindent 8 }}
19
spec:
20
+ {{- with .Values.imagePullSecrets }}
21
+ imagePullSecrets:
22
+ {{- toYaml . | nindent 8 }}
23
+ {{- end }}
24
containers:
25
- args:
26
- --metrics-bind-address=:8443
@@ -30,6 +34,7 @@ spec:
30
34
- secretRef:
31
35
name: {{ include "tke-extend-network-controller.fullname" . }}-env
32
36
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
37
+ imagePullPolicy: {{ .Values.image.pullPolicy }}
33
38
name: controller
39
ports:
40
- containerPort: 9443
0 commit comments