Skip to content

Commit 8771d43

Browse files
committed
Update csi proxy volume setup for new disk api group
Add disk v1beta2 api group into node yaml file
1 parent 9a52928 commit 8771d43

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ that represents availability by zone (e.g. `us-central1-c`, etc.).
7474
| Resize (Expand) | Beta | 1.16 | 1.16 | v0.7.0 | Stable |
7575
| Windows* | Beta | 1.18 | 1.18 | v1.1.0 | Stable |
7676

77-
* For Windows, it is recommended to use this driver with CSI proxy v0.2.2+.
77+
* For Windows, it is recommended to use this driver with CSI proxy v0.2.2+. The master version of driver requires disk v1beta2 group, which is only available in CSI proxy v0.2.2+
7878

7979
### Future Features
8080

deploy/kubernetes/base/node_windows/node.yaml

+12-6
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,28 @@ spec:
5252
mountPropagation: "None"
5353
- name: plugin-dir
5454
mountPath: C:\csi
55-
- name: csi-proxy-disk-pipe
55+
- name: csi-proxy-disk-v1beta1
5656
mountPath: \\.\pipe\csi-proxy-disk-v1beta1
57-
- name: csi-proxy-volume-pipe
57+
- name: csi-proxy-volume-v1beta1
5858
mountPath: \\.\pipe\csi-proxy-volume-v1beta1
59-
- name: csi-proxy-filesystem-pipe
59+
- name: csi-proxy-filesystem-v1beta1
6060
mountPath: \\.\pipe\csi-proxy-filesystem-v1beta1
61+
- name: csi-proxy-disk-v1beta2
62+
mountPath: \\.\pipe\csi-proxy-disk-v1beta2
6163
volumes:
62-
- name: csi-proxy-disk-pipe
64+
- name: csi-proxy-disk-v1beta1
6365
hostPath:
6466
path: \\.\pipe\csi-proxy-disk-v1beta1
6567
type: ""
66-
- name: csi-proxy-volume-pipe
68+
- name: csi-proxy-disk-v1beta2
69+
hostPath:
70+
path: \\.\pipe\csi-proxy-disk-v1beta2
71+
type: ""
72+
- name: csi-proxy-volume-v1beta1
6773
hostPath:
6874
path: \\.\pipe\csi-proxy-volume-v1beta1
6975
type: ""
70-
- name: csi-proxy-filesystem-pipe
76+
- name: csi-proxy-filesystem-v1beta1
7177
hostPath:
7278
path: \\.\pipe\csi-proxy-filesystem-v1beta1
7379
type: ""

0 commit comments

Comments
 (0)