|
1 | 1 | module github.com/plumber-cd/kubernetes-dynamic-reclaimable-pvc-controllers
|
2 | 2 |
|
3 |
| -go 1.16 |
| 3 | +go 1.17 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/google/uuid v1.2.0 |
7 |
| - k8s.io/api v0.21.2 |
8 |
| - k8s.io/apimachinery v0.21.2 |
9 |
| - k8s.io/client-go v0.21.2 |
10 |
| - k8s.io/klog/v2 v2.9.0 |
| 6 | + github.com/google/uuid v1.3.0 |
| 7 | + k8s.io/api v0.23.6 |
| 8 | + k8s.io/apimachinery v0.23.6 |
| 9 | + k8s.io/client-go v0.23.6 |
| 10 | + k8s.io/klog/v2 v2.60.1 |
| 11 | +) |
| 12 | + |
| 13 | +// Seems like upstream lock is broken, causing version mismatch with k8s.io/kube-openapi and others |
| 14 | +replace k8s.io/client-go => k8s.io/client-go v0.23.6 |
| 15 | + |
| 16 | +require ( |
| 17 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 18 | + github.com/go-logr/logr v1.2.0 // indirect |
| 19 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 20 | + github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
| 21 | + github.com/golang/protobuf v1.5.2 // indirect |
| 22 | + github.com/google/go-cmp v0.5.5 // indirect |
| 23 | + github.com/google/gofuzz v1.1.0 // indirect |
| 24 | + github.com/googleapis/gnostic v0.5.5 // indirect |
| 25 | + github.com/imdario/mergo v0.3.5 // indirect |
| 26 | + github.com/json-iterator/go v1.1.12 // indirect |
| 27 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 28 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 29 | + github.com/spf13/pflag v1.0.5 // indirect |
| 30 | + golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect |
| 31 | + golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect |
| 32 | + golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e // indirect |
| 33 | + golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect |
| 34 | + golang.org/x/text v0.3.7 // indirect |
| 35 | + golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect |
| 36 | + google.golang.org/appengine v1.6.7 // indirect |
| 37 | + google.golang.org/protobuf v1.27.1 // indirect |
| 38 | + gopkg.in/inf.v0 v0.9.1 // indirect |
| 39 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 40 | + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
| 41 | + k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect |
| 42 | + k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect |
| 43 | + sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect |
| 44 | + sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect |
| 45 | + sigs.k8s.io/yaml v1.2.0 // indirect |
11 | 46 | )
|
0 commit comments