Skip to content

Commit 23725f1

Browse files
committed
Update driver to use csi proxy filesystem v1beta1
1 Update driver to use lastest csi proxy with filesystem v1beta1 2 update service account for windows
1 parent d18dba1 commit 23725f1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

deploy/kubernetes/base/node_windows/node.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
# when deploying on GKE Windows node.
2020
# hostNetwork: true
2121
priorityClassName: csi-gce-pd-node
22-
serviceAccountName: csi-gce-pd-node-sa
22+
serviceAccountName: csi-gce-pd-node-sa-win
2323
nodeSelector:
2424
kubernetes.io/os: windows
2525
containers:
@@ -69,7 +69,7 @@ spec:
6969
type: ""
7070
- name: csi-proxy-filesystem-pipe
7171
hostPath:
72-
path: \\.\pipe\csi-proxy-filesystem-v1alpha1
72+
path: \\.\pipe\csi-proxy-filesystem-v1beta1
7373
type: ""
7474
- name: registration-dir
7575
hostPath:

deploy/kubernetes/images/alpha/image.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ metadata:
44
name: imagetag-gcepd-driver-alpha-win
55
imageTag:
66
name: gke.gcr.io/gcp-compute-persistent-disk-csi-driver-win
7-
newName: gcr.io/gke-release-staging/gcp-compute-persistent-disk-csi-driver-amd64-windows-1909
8-
newTag: "cca3c14"
7+
newName: gcr.io/gke-release-staging/gcp-compute-persistent-disk-csi-driver-amd64-windows
8+
newTag: "v1.0.1-gke.0"
99
---
1010

1111
apiVersion: builtin

pkg/mount-manager/safe-mounter_windows.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import (
2727
diskapi "github.com/kubernetes-csi/csi-proxy/client/api/disk/v1beta1"
2828
diskclient "github.com/kubernetes-csi/csi-proxy/client/groups/disk/v1beta1"
2929

30-
fsapi "github.com/kubernetes-csi/csi-proxy/client/api/filesystem/v1alpha1"
31-
fsclient "github.com/kubernetes-csi/csi-proxy/client/groups/filesystem/v1alpha1"
30+
fsapi "github.com/kubernetes-csi/csi-proxy/client/api/filesystem/v1beta1"
31+
fsclient "github.com/kubernetes-csi/csi-proxy/client/groups/filesystem/v1beta1"
3232

3333
volumeapi "github.com/kubernetes-csi/csi-proxy/client/api/volume/v1beta1"
3434
volumeclient "github.com/kubernetes-csi/csi-proxy/client/groups/volume/v1beta1"

0 commit comments

Comments
 (0)