File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
60
60
| ` controller.runOnMaster ` | run controller on master node |
61
61
` false ` |
62
62
| ` node.metricsPort ` | metrics port of csi-blob-node | 29635 |
63
+ | ` kubelet.linuxPath ` | configure the kubelet path for Linux node | ` /var/lib/kubelet ` |
63
64
64
65
## Troubleshooting
65
66
- Add ` --wait -v=5 --debug ` in ` helm install ` command to get detailed error
Original file line number Diff line number Diff line change 64
64
- name : ADDRESS
65
65
value : /csi/csi.sock
66
66
- name : DRIVER_REG_SOCK_PATH
67
- value : /var/lib/ kubelet/plugins/blob.csi.azure.com/csi.sock
67
+ value : {{ .Values. kubelet.linuxPath }} /plugins/blob.csi.azure.com/csi.sock
68
68
volumeMounts :
69
69
- name : socket-dir
70
70
mountPath : /csi
@@ -121,7 +121,7 @@ spec:
121
121
volumeMounts :
122
122
- mountPath : /csi
123
123
name : socket-dir
124
- - mountPath : /var/lib/ kubelet/
124
+ - mountPath : {{ .Values. kubelet.linuxPath }} /
125
125
mountPropagation : Bidirectional
126
126
name : mountpoint-dir
127
127
- mountPath : /etc/kubernetes/
@@ -143,15 +143,15 @@ spec:
143
143
memory : 20Mi
144
144
volumes :
145
145
- hostPath :
146
- path : /var/lib/ kubelet/plugins/blob.csi.azure.com
146
+ path : {{ .Values. kubelet.linuxPath }} /plugins/blob.csi.azure.com
147
147
type : DirectoryOrCreate
148
148
name : socket-dir
149
149
- hostPath :
150
- path : /var/lib/ kubelet/
150
+ path : {{ .Values. kubelet.linuxPath }} /
151
151
type : DirectoryOrCreate
152
152
name : mountpoint-dir
153
153
- hostPath :
154
- path : /var/lib/ kubelet/plugins_registry/
154
+ path : {{ .Values. kubelet.linuxPath }} /plugins_registry/
155
155
type : DirectoryOrCreate
156
156
name : registration-dir
157
157
- hostPath :
Original file line number Diff line number Diff line change @@ -33,3 +33,6 @@ controller:
33
33
34
34
node :
35
35
metricsPort : 29635
36
+
37
+ kubelet :
38
+ linuxPath : /var/lib/kubelet
You can’t perform that action at this time.
0 commit comments