Skip to content

Commit 778a9e2

Browse files
authored
Merge pull request #504 from kubernetes-sigs/dependabot/go_modules/github.com/container-storage-interface/spec-1.9.0
Bump github.com/container-storage-interface/spec from 1.8.0 to 1.9.0
2 parents 33ba81f + be2040c commit 778a9e2

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

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.5.8
77
github.com/IBM/go-sdk-core/v5 v5.15.0
88
github.com/IBM/platform-services-go-sdk v0.56.2
9-
github.com/container-storage-interface/spec v1.8.0
9+
github.com/container-storage-interface/spec v1.9.0
1010
github.com/davecgh/go-spew v1.1.1
1111
github.com/golang/mock v1.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
@@ -29,8 +29,8 @@ github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWR
2929
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
3030
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
3131
github.com/cncf/xds/go v0.0.0-20231109132714-523115ebc101 h1:7To3pQ+pZo0i3dsWEbinPNFs5gPSBOsJtx3wTT94VBY=
32-
github.com/container-storage-interface/spec v1.8.0 h1:D0vhF3PLIZwlwZEf2eNbpujGCNwspwTYf2idJRJx4xI=
33-
github.com/container-storage-interface/spec v1.8.0/go.mod h1:ROLik+GhPslwwWRNFF1KasPzroNARibH2rfz1rkg4H0=
32+
github.com/container-storage-interface/spec v1.9.0 h1:zKtX4STsq31Knz3gciCYCi1SXtO2HJDecIjDVboYavY=
33+
github.com/container-storage-interface/spec v1.9.0/go.mod h1:ZfDu+3ZRyeVqxZM0Ds19MVLkN2d1XJ5MAfi1L3VjlT0=
3434
github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4=
3535
github.com/coreos/go-semver v0.3.1/go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03VsM8rvUec=
3636
github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs=

pkg/driver/controller.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,11 @@ func (d *controllerService) ControllerGetVolume(ctx context.Context, req *csi.Co
430430
return nil, status.Error(codes.Unimplemented, "")
431431
}
432432

433+
func (d *controllerService) ControllerModifyVolume(ctx context.Context, req *csi.ControllerModifyVolumeRequest) (*csi.ControllerModifyVolumeResponse, error) {
434+
klog.V(4).InfoS("ControllerModifyVolume: called with args %+v", *req)
435+
return nil, status.Error(codes.Unimplemented, "")
436+
}
437+
433438
func isValidVolumeCapabilities(volCaps []*csi.VolumeCapability) bool {
434439
hasSupport := func(cap *csi.VolumeCapability) bool {
435440
for _, c := range volumeCaps {

0 commit comments

Comments
 (0)