feat: add nodeSelector for provisioner
This commit is contained in:
parent
5a3a517315
commit
59a7605ad8
2 changed files with 6 additions and 0 deletions
|
@ -77,6 +77,10 @@ spec:
|
||||||
{{- with .Values.tolerations.controller }}
|
{{- with .Values.tolerations.controller }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.nodeSelector }}
|
||||||
|
nodeSelector:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: csi-provisioner
|
- name: csi-provisioner
|
||||||
image: {{ .Values.images.provisioner }}
|
image: {{ .Values.images.provisioner }}
|
||||||
|
|
|
@ -43,4 +43,6 @@ tolerations:
|
||||||
node: []
|
node: []
|
||||||
controller: []
|
controller: []
|
||||||
|
|
||||||
|
nodeSelector: {}
|
||||||
|
|
||||||
kubeletPath: /var/lib/kubelet
|
kubeletPath: /var/lib/kubelet
|
||||||
|
|
Loading…
Reference in a new issue