Skip to content

Commit 1ceb64a

Browse files
committed
Update dependencies
- fluxcd/pkg/apis/meta v0.14.0 - fluxcd/pkg/runtime v0.16.0 - k8s.io/* v0.24.0 - helm.sh/helm/v3 v3.9.0-rc.1 (required by breaking changes in Kubernetes 1.24) Note that fluxcd/pkg/runtime v0.16 comes with support for Kubernetes API Priority and Fairness feature. Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
1 parent 9c1bbc4 commit 1ceb64a

File tree

5 files changed

+162
-971
lines changed

5 files changed

+162
-971
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ api-docs: gen-crd-api-reference-docs ## Generate API reference documentation
140140
$(GEN_CRD_API_REFERENCE_DOCS) -api-dir=./api/v1beta2 -config=./hack/api-docs/config.json -template-dir=./hack/api-docs/template -out-file=./docs/api/source.md
141141

142142
tidy: ## Run go mod tidy
143-
go mod tidy
144-
cd api; go mod tidy
143+
cd api; rm -f go.sum; go mod tidy -compat=1.17
144+
rm -f go.sum; go mod tidy -compat=1.17
145145

146146
fmt: ## Run go fmt against code
147147
go fmt ./...

api/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ go 1.17
44

55
require (
66
github.com/fluxcd/pkg/apis/acl v0.0.3
7-
github.com/fluxcd/pkg/apis/meta v0.13.0
8-
k8s.io/apimachinery v0.23.6
7+
github.com/fluxcd/pkg/apis/meta v0.14.0
8+
k8s.io/apimachinery v0.24.0
99
sigs.k8s.io/controller-runtime v0.11.2
1010
)
1111

1212
require (
1313
github.com/go-logr/logr v1.2.2 // indirect
1414
github.com/gogo/protobuf v1.3.2 // indirect
15-
github.com/google/go-cmp v0.5.6 // indirect
1615
github.com/google/gofuzz v1.2.0 // indirect
1716
github.com/json-iterator/go v1.1.12 // indirect
1817
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
1918
github.com/modern-go/reflect2 v1.0.2 // indirect
20-
golang.org/x/net v0.0.0-20211215060638-4ddde0e984e9 // indirect
19+
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
2120
golang.org/x/text v0.3.7 // indirect
2221
gopkg.in/inf.v0 v0.9.1 // indirect
2322
gopkg.in/yaml.v2 v2.4.0 // indirect
24-
k8s.io/klog/v2 v2.30.0 // indirect
25-
k8s.io/utils v0.0.0-20211208161948-7d6a63dca704 // indirect
23+
k8s.io/api v0.24.0 // indirect
24+
k8s.io/klog/v2 v2.60.1 // indirect
25+
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
2626
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
2727
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
2828
)

0 commit comments

Comments
 (0)