Skip to content

Commit

Permalink
fix: incorrect kubelet path setting on v1.14 chart config
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Jan 25, 2024
1 parent 7d7c2b1 commit 9da7d01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified charts/v1.14.0/csi-driver-smb-v1.14.0.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions charts/v1.14.0/csi-driver-smb/templates/csi-smb-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ spec:
- name: ADDRESS
value: /csi/csi.sock
- name: DRIVER_REG_SOCK_PATH
value: /var/lib/kubelet/plugins/{{ .Values.driver.name }}/csi.sock
value: {{ .Values.linux.kubelet }}/plugins/{{ .Values.driver.name }}/csi.sock
imagePullPolicy: {{ .Values.image.nodeDriverRegistrar.pullPolicy }}
volumeMounts:
- name: socket-dir
Expand Down Expand Up @@ -135,11 +135,11 @@ spec:
volumeMounts:
- mountPath: /csi
name: socket-dir
- mountPath: /var/lib/kubelet/
- mountPath: {{ .Values.linux.kubelet }}
mountPropagation: Bidirectional
name: mountpoint-dir
{{- if ne .Values.linux.krb5CacheDirectory "" }}
- mountPath: /var/lib/kubelet/kerberos/
- mountPath: {{ .Values.linux.kubelet }}/kerberos/
mountPropagation: Bidirectional
name: krb5Cache-dir
{{- end }}
Expand Down

0 comments on commit 9da7d01

Please sign in to comment.