Skip to content

Commit 539b40c

Browse files
committed
Upgrade github.com/container-storage-interface/spec
Signed-off-by: Yussuf Shaikh <[email protected]>
1 parent c8a4f6d commit 539b40c

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The IBM Power Virtual Systems Container Storage Interface (CSI) Driver provides
88
# CSI Specification Compatibility Matrix
99
| PowerVS CSI Driver | Kubernetes | CSI | Golang |
1010
| ----------------------------- | ----------- | -------- | -------- |
11-
| main | 1.30 | 1.9.0 | 1.22 |
11+
| main | 1.30 | 1.10.0 | 1.22 |
1212
| 0.7.0 | 1.30 | 1.9.0 | 1.22 |
1313
| 0.6.0 | 1.29 | 1.9.0 | 1.21 |
1414
| 0.5.0 | 1.28 | 1.8.0 | 1.20 |

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/IBM-Cloud/power-go-client v1.8.3
77
github.com/IBM/go-sdk-core/v5 v5.18.1
88
github.com/IBM/platform-services-go-sdk v0.71.2
9-
github.com/container-storage-interface/spec v1.9.0
9+
github.com/container-storage-interface/spec v1.10.0
1010
github.com/davecgh/go-spew v1.1.1
1111
github.com/google/go-cmp v0.6.0
1212
github.com/kubernetes-csi/csi-test v2.2.0+incompatible

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3
2424
github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
2525
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
2626
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
27-
github.com/container-storage-interface/spec v1.9.0 h1:zKtX4STsq31Knz3gciCYCi1SXtO2HJDecIjDVboYavY=
28-
github.com/container-storage-interface/spec v1.9.0/go.mod h1:ZfDu+3ZRyeVqxZM0Ds19MVLkN2d1XJ5MAfi1L3VjlT0=
27+
github.com/container-storage-interface/spec v1.10.0 h1:YkzWPV39x+ZMTa6Ax2czJLLwpryrQ+dPesB34mrRMXA=
28+
github.com/container-storage-interface/spec v1.10.0/go.mod h1:DtUvaQszPml1YJfIK7c00mlv6/g4wNMLanLgiUbKFRI=
2929
github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4=
3030
github.com/coreos/go-semver v0.3.1/go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03VsM8rvUec=
3131
github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs=

pkg/driver/controller.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ type controllerService struct {
6868
cloud cloud.Cloud
6969
driverOptions *Options
7070
volumeLocks *util.VolumeLocks
71+
csi.UnimplementedControllerServer
7172
}
7273

7374
// Provider holds information from the cloud provider.

pkg/driver/driver.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const (
5151
type Driver struct {
5252
controllerService
5353
nodeService
54+
csi.UnimplementedIdentityServer
5455

5556
srv *grpc.Server
5657
options *Options

pkg/driver/node.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ type nodeService struct {
7070
pvmInstanceId string
7171
volumeLocks *util.VolumeLocks
7272
stats StatsUtils
73+
csi.UnimplementedNodeServer
7374
}
7475

7576
// newNodeService creates a new node service

0 commit comments

Comments
 (0)