File tree Expand file tree Collapse file tree 6 files changed +7
-4
lines changed Expand file tree Collapse file tree 6 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ The IBM Power Virtual Systems Container Storage Interface (CSI) Driver provides
8
8
# CSI Specification Compatibility Matrix
9
9
| PowerVS CSI Driver | Kubernetes | CSI | Golang |
10
10
| ----------------------------- | ----------- | -------- | -------- |
11
- | main | 1.30 | 1.9 .0 | 1.22 |
11
+ | main | 1.30 | 1.10 .0 | 1.22 |
12
12
| 0.7.0 | 1.30 | 1.9.0 | 1.22 |
13
13
| 0.6.0 | 1.29 | 1.9.0 | 1.21 |
14
14
| 0.5.0 | 1.28 | 1.8.0 | 1.20 |
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require (
6
6
github.com/IBM-Cloud/power-go-client v1.8.3
7
7
github.com/IBM/go-sdk-core/v5 v5.18.1
8
8
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
10
10
github.com/davecgh/go-spew v1.1.1
11
11
github.com/google/go-cmp v0.6.0
12
12
github.com/kubernetes-csi/csi-test v2.2.0+incompatible
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK3
24
24
github.com/cenkalti/backoff/v4 v4.3.0 /go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE =
25
25
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs =
26
26
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 =
29
29
github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4 =
30
30
github.com/coreos/go-semver v0.3.1 /go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03VsM8rvUec =
31
31
github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs =
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ type controllerService struct {
68
68
cloud cloud.Cloud
69
69
driverOptions * Options
70
70
volumeLocks * util.VolumeLocks
71
+ csi.UnimplementedControllerServer
71
72
}
72
73
73
74
// Provider holds information from the cloud provider.
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ const (
51
51
type Driver struct {
52
52
controllerService
53
53
nodeService
54
+ csi.UnimplementedIdentityServer
54
55
55
56
srv * grpc.Server
56
57
options * Options
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ type nodeService struct {
70
70
pvmInstanceId string
71
71
volumeLocks * util.VolumeLocks
72
72
stats StatsUtils
73
+ csi.UnimplementedNodeServer
73
74
}
74
75
75
76
// newNodeService creates a new node service
You can’t perform that action at this time.
0 commit comments