Skip to content

Commit

Permalink
Merge pull request #23 from andrewsykim/k8s-v1-14
Browse files Browse the repository at this point in the history
update kubernetes to v1.14 and csi spec to v1.1.0
  • Loading branch information
k8s-ci-robot authored Mar 29, 2019
2 parents 98e45be + 2cc3f8c commit 2d2f98b
Show file tree
Hide file tree
Showing 25 changed files with 1,271 additions and 504 deletions.
52 changes: 26 additions & 26 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@

[[constraint]]
name = "github.com/container-storage-interface/spec"
version = "=1.0.0"
version = "=1.1.0"

[[constraint]]
name = "k8s.io/api"
version = "kubernetes-1.14.0-beta.2"
version = "kubernetes-1.14.0"

[[override]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.14.0-beta.2"
version = "kubernetes-1.14.0"

[[constraint]]
name = "k8s.io/client-go"
version = "kubernetes-1.14.0-beta.2"
version = "kubernetes-1.14.0"

[prune]
go-tests = true
Expand Down
4 changes: 4 additions & 0 deletions rpc/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -609,3 +609,7 @@ func (c *fakeControllerServer) DeleteSnapshot(context.Context, *csi.DeleteSnapsh
func (c *fakeControllerServer) ListSnapshots(context.Context, *csi.ListSnapshotsRequest) (*csi.ListSnapshotsResponse, error) {
return nil, fmt.Errorf("unimplemented")
}

func (c *fakeControllerServer) ControllerExpandVolume(context.Context, *csi.ControllerExpandVolumeRequest) (*csi.ControllerExpandVolumeResponse, error) {
return nil, fmt.Errorf("unimplemented")
}
Loading

0 comments on commit 2d2f98b

Please sign in to comment.