feat: add nodeSelector for provisioner

This commit is contained in:
Stepan Kazakov 2023-06-26 00:00:53 +03:00 committed by Stepan Kazakov
parent 5a3a517315
commit 59a7605ad8
No known key found for this signature in database
GPG key ID: 68E3044B495C215B
2 changed files with 6 additions and 0 deletions

View file

@ -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 }}

View file

@ -43,4 +43,6 @@ tolerations:
node: [] node: []
controller: [] controller: []
nodeSelector: {}
kubeletPath: /var/lib/kubelet kubeletPath: /var/lib/kubelet