From 4ad81b11cdaa8bcedc35f7f091dc7a692bf81366 Mon Sep 17 00:00:00 2001 From: Matthew Wong Date: Mon, 18 Jun 2018 12:29:16 -0400 Subject: [PATCH] Update to CSI 0.3 --- pkg/nfs/deploy/kubernetes/csi-attacher-nfsplugin.yaml | 4 ++-- pkg/nfs/deploy/kubernetes/csi-nodeplugin-nfsplugin.yaml | 4 ++-- pkg/nfs/driver.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/nfs/deploy/kubernetes/csi-attacher-nfsplugin.yaml b/pkg/nfs/deploy/kubernetes/csi-attacher-nfsplugin.yaml index 09b53be8..c8165fe8 100644 --- a/pkg/nfs/deploy/kubernetes/csi-attacher-nfsplugin.yaml +++ b/pkg/nfs/deploy/kubernetes/csi-attacher-nfsplugin.yaml @@ -30,7 +30,7 @@ spec: serviceAccount: csi-attacher containers: - name: csi-attacher - image: quay.io/k8scsi/csi-attacher:v0.2.0 + image: quay.io/k8scsi/csi-attacher:v0.3.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" @@ -43,7 +43,7 @@ spec: mountPath: /var/lib/csi/sockets/pluginproxy/ - name: nfs - image: quay.io/k8scsi/nfsplugin:v0.2.0 + image: quay.io/k8scsi/nfsplugin:v0.3.0 args : - "--nodeid=$(NODE_ID)" - "--endpoint=$(CSI_ENDPOINT)" diff --git a/pkg/nfs/deploy/kubernetes/csi-nodeplugin-nfsplugin.yaml b/pkg/nfs/deploy/kubernetes/csi-nodeplugin-nfsplugin.yaml index f128108f..457e6f27 100644 --- a/pkg/nfs/deploy/kubernetes/csi-nodeplugin-nfsplugin.yaml +++ b/pkg/nfs/deploy/kubernetes/csi-nodeplugin-nfsplugin.yaml @@ -17,7 +17,7 @@ spec: hostNetwork: true containers: - name: driver-registrar - image: quay.io/k8scsi/driver-registrar:v0.2.0 + image: quay.io/k8scsi/driver-registrar:v0.3.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" @@ -37,7 +37,7 @@ spec: capabilities: add: ["SYS_ADMIN"] allowPrivilegeEscalation: true - image: quay.io/k8scsi/nfsplugin:v0.2.0 + image: quay.io/k8scsi/nfsplugin:v0.3.0 args : - "--nodeid=$(NODE_ID)" - "--endpoint=$(CSI_ENDPOINT)" diff --git a/pkg/nfs/driver.go b/pkg/nfs/driver.go index 72704369..6260129e 100644 --- a/pkg/nfs/driver.go +++ b/pkg/nfs/driver.go @@ -39,7 +39,7 @@ const ( ) var ( - version = "0.2.0" + version = "0.3.0" ) func NewDriver(nodeID, endpoint string) *driver {