File tree Expand file tree Collapse file tree 2 files changed +7
-20
lines changed Expand file tree Collapse file tree 2 files changed +7
-20
lines changed Original file line number Diff line number Diff line change @@ -13,39 +13,31 @@ spec:
13
13
labels :
14
14
app : gcp-compute-persistent-disk-csi-driver
15
15
spec :
16
- serviceAccount : csi-controller-sa
16
+ serviceAccountName : csi-controller-sa
17
17
containers :
18
18
- name : csi-provisioner
19
19
image : quay.io/k8scsi/csi-provisioner:v0.4.1
20
20
args :
21
21
- " --v=5"
22
22
- " --provisioner=com.google.csi.gcepd"
23
- - " --csi-address=$(ADDRESS)"
24
- env :
25
- - name : ADDRESS
26
- value : /csi/csi.sock
23
+ - " --csi-address=/csi/csi.sock"
27
24
volumeMounts :
28
25
- name : socket-dir
29
26
mountPath : /csi
30
27
- name : csi-attacher
31
28
image : quay.io/k8scsi/csi-attacher:v0.4.1
32
29
args :
33
30
- " --v=5"
34
- - " --csi-address=$(ADDRESS)"
35
- env :
36
- - name : ADDRESS
37
- value : /csi/csi.sock
31
+ - " --csi-address=/csi/csi.sock"
38
32
volumeMounts :
39
33
- name : socket-dir
40
34
mountPath : /csi
41
35
- name : gce-pd-driver
42
36
image : gcr.io/google-containers/volume-csi/gcp-compute-persistent-disk-csi-driver:v0.2.0.beta
43
37
args :
44
38
- " --v=5"
45
- - " --endpoint=$(CSI_ENDPOINT) "
39
+ - " --endpoint=unix:/csi/csi.sock "
46
40
env :
47
- - name : CSI_ENDPOINT
48
- value : unix:/csi/csi.sock
49
41
- name : GOOGLE_APPLICATION_CREDENTIALS
50
42
value : " /etc/cloud-sa/cloud-sa.json"
51
43
volumeMounts :
Original file line number Diff line number Diff line change @@ -12,17 +12,15 @@ spec:
12
12
labels :
13
13
app : gcp-compute-persistent-disk-csi-driver
14
14
spec :
15
- serviceAccount : csi-node-sa
15
+ serviceAccountName : csi-node-sa
16
16
containers :
17
17
- name : csi-driver-registrar
18
18
image : quay.io/k8scsi/driver-registrar:v0.4.1
19
19
args :
20
20
- " --v=5"
21
- - " --csi-address=$(ADDRESS) "
21
+ - " --csi-address=/var/lib/kubelet/plugins/com.google.csi.gcepd/csi.sock "
22
22
- " --kubelet-registration-path=/var/lib/kubelet/plugins/com.google.csi.gcepd/csi.sock"
23
23
env :
24
- - name : ADDRESS
25
- value : /var/lib/kubelet/plugins/com.google.csi.gcepd/csi.sock
26
24
- name : KUBE_NODE_NAME
27
25
valueFrom :
28
26
fieldRef :
38
36
image : gcr.io/google-containers/volume-csi/gcp-compute-persistent-disk-csi-driver:v0.2.0.beta
39
37
args :
40
38
- " --v=5"
41
- - " --endpoint=$(CSI_ENDPOINT)"
42
- env :
43
- - name : CSI_ENDPOINT
44
- value : unix:/csi/csi.sock
39
+ - " --endpoint=unix:/csi/csi.sock"
45
40
volumeMounts :
46
41
- name : kubelet-dir
47
42
mountPath : /var/lib/kubelet
You can’t perform that action at this time.
0 commit comments