Skip to content

Commit ed25b29

Browse files
authored
#10: update for k8s 1.23 (#11)
1 parent 4b3c6c7 commit ed25b29

File tree

4 files changed

+301
-77
lines changed

4 files changed

+301
-77
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.0-alpha1] - 2022-04-26
11+
12+
### Changed
13+
14+
- Updated with Go 1.17 and K8s dependencies 1.23.6.
15+
1016
## [0.0.4] - 2021-06-20
1117

1218
### Added

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16 AS build
1+
FROM golang:1.17 AS build
22

33
ARG RELEASE_STRING=dev
44
ENV IMPORT_PATH="github.com/plumber-cd/kubernetes-dynamic-reclaimable-pvc-controllers"

go.mod

Lines changed: 41 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,46 @@
11
module github.com/plumber-cd/kubernetes-dynamic-reclaimable-pvc-controllers
22

3-
go 1.16
3+
go 1.17
44

55
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
1146
)

0 commit comments

Comments
 (0)