Skip to content

Commit f6f104f

Browse files
committed
chore: upgrade to csi spec v1.5.0
1 parent 16e5b38 commit f6f104f

File tree

6 files changed

+424
-254
lines changed

6 files changed

+424
-254
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ smb-darwin:
135135

136136
.PHONY: container
137137
container: smb
138-
docker build --no-cache -t $(IMAGE_TAG) -f ./pkg/smbplugin/dev.Dockerfile .
138+
docker build --no-cache -t $(IMAGE_TAG) -f ./pkg/smbplugin/dev.Dockerfile . --load
139139

140140
.PHONY: container-linux
141141
container-linux:

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/Azure/go-autorest/autorest v0.11.12
88
github.com/Azure/go-autorest/autorest/adal v0.9.5
99
github.com/Azure/go-autorest/autorest/to v0.3.0
10-
github.com/container-storage-interface/spec v1.3.0
10+
github.com/container-storage-interface/spec v1.5.0
1111
github.com/golang/protobuf v1.4.3
1212
github.com/kubernetes-csi/csi-lib-utils v0.7.0
1313
github.com/kubernetes-csi/csi-proxy/client v1.0.1
@@ -88,7 +88,6 @@ replace (
8888
github.com/clusterhq/flocker-go => github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313
8989
github.com/cockroachdb/datadriven => github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa
9090
github.com/codegangsta/negroni => github.com/codegangsta/negroni v1.0.0
91-
github.com/container-storage-interface/spec => github.com/container-storage-interface/spec v1.3.0
9291
github.com/containerd/console => github.com/containerd/console v0.0.0-20170925154832-84eeaae905fa
9392
github.com/containerd/containerd => github.com/containerd/containerd v1.0.2
9493
github.com/containerd/typeurl => github.com/containerd/typeurl v0.0.0-20190228175220-2a93cfde8c20

go.sum

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,11 @@ github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDk
7777
github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313/go.mod h1:P1wt9Z3DP8O6W3rvwCt0REIlshg1InHImaLW0t3ObY0=
7878
github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8=
7979
github.com/codegangsta/negroni v1.0.0/go.mod h1:v0y3T5G7Y1UlFfyxFn/QLRU4a2EuNau2iZY63YTKWo0=
80-
github.com/container-storage-interface/spec v1.3.0 h1:wMH4UIoWnK/TXYw8mbcIHgZmB6kHOeIsYsiaTJwa6bc=
80+
github.com/container-storage-interface/spec v1.1.0/go.mod h1:6URME8mwIBbpVyZV93Ce5St17xBiQJQY67NDsuohiy4=
81+
github.com/container-storage-interface/spec v1.2.0/go.mod h1:6URME8mwIBbpVyZV93Ce5St17xBiQJQY67NDsuohiy4=
8182
github.com/container-storage-interface/spec v1.3.0/go.mod h1:6URME8mwIBbpVyZV93Ce5St17xBiQJQY67NDsuohiy4=
83+
github.com/container-storage-interface/spec v1.5.0 h1:lvKxe3uLgqQeVQcrnL2CPQKISoKjTJxojEs9cBk+HXo=
84+
github.com/container-storage-interface/spec v1.5.0/go.mod h1:8K96oQNkJ7pFcC2R9Z1ynGGBB1I93kcS6PGg3SsOk8s=
8285
github.com/containerd/console v0.0.0-20170925154832-84eeaae905fa/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw=
8386
github.com/containerd/containerd v1.0.2/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA=
8487
github.com/containerd/typeurl v0.0.0-20190228175220-2a93cfde8c20/go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc=

test/sanity/run-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function install_csi_sanity_bin {
3939
mkdir -p $GOPATH/src/github.com/kubernetes-csi
4040
pushd $GOPATH/src/github.com/kubernetes-csi
4141
export GO111MODULE=off
42-
git clone https://github.com/kubernetes-csi/csi-test.git -b v4.0.2
42+
git clone https://github.com/kubernetes-csi/csi-test.git -b v4.2.0
4343
pushd csi-test/cmd/csi-sanity
4444
make install
4545
popd

0 commit comments

Comments
 (0)