-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove maxStorageCapacity restriction (#53)
- Loading branch information
Showing
10 changed files
with
150 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
module github.com/metal-stack/csi-driver-lvm | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/container-storage-interface/spec v1.3.0 | ||
github.com/container-storage-interface/spec v1.4.0 | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect | ||
github.com/docker/go-units v0.4.0 | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/kr/pretty v0.2.1 // indirect | ||
github.com/kubernetes-csi/csi-lib-utils v0.9.0 | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/kubernetes-csi/csi-lib-utils v0.9.1 | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/urfave/cli/v2 v2.3.0 | ||
golang.org/x/crypto v0.0.0-20201124201722-c8d3bf9c5392 // indirect | ||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b | ||
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58 // indirect | ||
golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3 | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e // indirect | ||
google.golang.org/grpc v1.33.2 | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
k8s.io/api v0.19.4 | ||
k8s.io/apimachinery v0.19.4 | ||
k8s.io/client-go v0.19.4 | ||
k8s.io/klog/v2 v2.4.0 | ||
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect | ||
golang.org/x/net v0.0.0-20210510120150-4163338589ed | ||
golang.org/x/oauth2 v0.0.0-20210427180440-81ed05c6b58c // indirect | ||
golang.org/x/sys v0.0.0-20210511113859-b0526f3d8744 | ||
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20210510173355-fb37daa5cd7a // indirect | ||
google.golang.org/grpc v1.37.1 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
k8s.io/api v0.21.0 | ||
k8s.io/apimachinery v0.21.0 | ||
k8s.io/client-go v0.21.0 | ||
k8s.io/klog/v2 v2.8.0 | ||
k8s.io/utils v0.0.0-20210305010621-2afb4311ab10 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.1.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters