Skip to content

Commit

Permalink
Bump github.com/container-storage-interface/spec from 1.8.0 to 1.9.0 (#…
Browse files Browse the repository at this point in the history
…155)

* Bump github.com/container-storage-interface/spec from 1.8.0 to 1.9.0

Bumps [github.com/container-storage-interface/spec](https://github.com/container-storage-interface/spec) from 1.8.0 to 1.9.0.
- [Release notes](https://github.com/container-storage-interface/spec/releases)
- [Commits](container-storage-interface/spec@v1.8.0...v1.9.0)

---
updated-dependencies:
- dependency-name: github.com/container-storage-interface/spec
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add unimplemented method ControllerModifyVolume

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Riley <[email protected]>
  • Loading branch information
dependabot[bot] and optik-aper authored Nov 16, 2023
1 parent 29bea00 commit 2445e68
Show file tree
Hide file tree
Showing 5 changed files with 520 additions and 326 deletions.
5 changes: 5 additions & 0 deletions driver/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,11 @@ func (c *VultrControllerServer) ControllerUnpublishVolume(ctx context.Context, r
return &csi.ControllerUnpublishVolumeResponse{}, nil
}

// ControllerModifyVolume is unimplemented
func (c *VultrControllerServer) ControllerModifyVolume(ctx context.Context, req *csi.ControllerModifyVolumeRequest) (*csi.ControllerModifyVolumeResponse, error) { //nolint:lll
return nil, status.Errorf(codes.Unimplemented, "method ControllerModifyVolume not implemented")
}

// ValidateVolumeCapabilities checks if requested capabilities are supported
func (c *VultrControllerServer) ValidateVolumeCapabilities(ctx context.Context, req *csi.ValidateVolumeCapabilitiesRequest) (*csi.ValidateVolumeCapabilitiesResponse, error) { //nolint:lll
if req.VolumeId == "" {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/vultr/vultr-csi
go 1.20

require (
github.com/container-storage-interface/spec v1.8.0
github.com/container-storage-interface/spec v1.9.0
github.com/golang/protobuf v1.5.3
github.com/sirupsen/logrus v1.9.3
github.com/vultr/govultr/v3 v3.4.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/container-storage-interface/spec v1.8.0 h1:D0vhF3PLIZwlwZEf2eNbpujGCNwspwTYf2idJRJx4xI=
github.com/container-storage-interface/spec v1.8.0/go.mod h1:ROLik+GhPslwwWRNFF1KasPzroNARibH2rfz1rkg4H0=
github.com/container-storage-interface/spec v1.9.0 h1:zKtX4STsq31Knz3gciCYCi1SXtO2HJDecIjDVboYavY=
github.com/container-storage-interface/spec v1.9.0/go.mod h1:ZfDu+3ZRyeVqxZM0Ds19MVLkN2d1XJ5MAfi1L3VjlT0=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand Down
Loading

0 comments on commit 2445e68

Please sign in to comment.