Skip to content

Commit eae09b6

Browse files
authored
Merge pull request #669 from jingxu97/nov/diskbeta2
Update csi proxy volume setup for new disk api group
2 parents 9a52928 + e44ff7a commit eae09b6

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-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

+13-6
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,29 @@ spec:
5252
mountPropagation: "None"
5353
- name: plugin-dir
5454
mountPath: C:\csi
55-
- name: csi-proxy-disk-pipe
55+
# TODO: check overlay and remove v1beta1 if it is safe
56+
- name: csi-proxy-disk-v1beta1
5657
mountPath: \\.\pipe\csi-proxy-disk-v1beta1
57-
- name: csi-proxy-volume-pipe
58+
- name: csi-proxy-volume-v1beta1
5859
mountPath: \\.\pipe\csi-proxy-volume-v1beta1
59-
- name: csi-proxy-filesystem-pipe
60+
- name: csi-proxy-filesystem-v1beta1
6061
mountPath: \\.\pipe\csi-proxy-filesystem-v1beta1
62+
- name: csi-proxy-disk-v1beta2
63+
mountPath: \\.\pipe\csi-proxy-disk-v1beta2
6164
volumes:
62-
- name: csi-proxy-disk-pipe
65+
- name: csi-proxy-disk-v1beta1
6366
hostPath:
6467
path: \\.\pipe\csi-proxy-disk-v1beta1
6568
type: ""
66-
- name: csi-proxy-volume-pipe
69+
- name: csi-proxy-disk-v1beta2
70+
hostPath:
71+
path: \\.\pipe\csi-proxy-disk-v1beta2
72+
type: ""
73+
- name: csi-proxy-volume-v1beta1
6774
hostPath:
6875
path: \\.\pipe\csi-proxy-volume-v1beta1
6976
type: ""
70-
- name: csi-proxy-filesystem-pipe
77+
- name: csi-proxy-filesystem-v1beta1
7178
hostPath:
7279
path: \\.\pipe\csi-proxy-filesystem-v1beta1
7380
type: ""

0 commit comments

Comments
 (0)