Skip to content

Commit 7798e31

Browse files
authored
Bump Kubernetes dependencies from x.25.11 to x.27.7 (#2337)
1 parent 37984e8 commit 7798e31

File tree

12 files changed

+144
-111
lines changed

12 files changed

+144
-111
lines changed

.changelog/2337.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
```release-note:note
2+
Bump Kubernetes dependencies from x.25.11 to x.27.7.
3+
```
4+
5+
```release-note:note
6+
Bump Go version from 1.20 to 1.21.
7+
```

.changelog/changelog.tmpl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,11 @@ DOCS:
5454
* {{ template "note" . }}
5555
{{ end -}}
5656
{{- end -}}
57+
58+
{{- if .NotesByType.note }}
59+
NOTES:
60+
61+
{{range .NotesByType.note -}}
62+
* {{ template "note" . }}
63+
{{ end -}}
64+
{{- end -}}

.github/workflows/acceptance_tests_kind.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626

2727
env:
2828
KUBECONFIG: ${{ github.workspace }}/.kube/config
29-
KIND_VERSION: ${{ github.event.inputs.kind_version || vars.KIND_VERSION }}
29+
KIND_VERSION: ${{ github.event.inputs.kindVersion || vars.KIND_VERSION }}
3030
PARALLEL_RUNS: ${{ github.event.inputs.parallelRuns || vars.PARALLEL_RUNS }}
3131
TERRAFORM_VERSION: ${{ github.event.inputs.terraformVersion || vars.TERRAFORM_VERSION }}
3232

go.mod

Lines changed: 20 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -22,44 +22,36 @@ require (
2222
github.com/robfig/cron v1.2.0
2323
github.com/stretchr/testify v1.8.1
2424
golang.org/x/mod v0.13.0
25-
k8s.io/api v0.25.11
26-
k8s.io/apiextensions-apiserver v0.25.11
27-
k8s.io/apimachinery v0.25.11
28-
k8s.io/client-go v0.25.11
29-
k8s.io/kube-aggregator v0.25.11
30-
k8s.io/kubectl v0.25.11
31-
k8s.io/kubernetes v1.25.11
25+
k8s.io/api v0.27.7
26+
k8s.io/apiextensions-apiserver v0.27.7
27+
k8s.io/apimachinery v0.27.7
28+
k8s.io/client-go v0.27.7
29+
k8s.io/kube-aggregator v0.27.7
30+
k8s.io/kubectl v0.27.7
31+
k8s.io/kubernetes v1.27.7
3232
)
3333

3434
require (
35-
cloud.google.com/go/compute v1.19.1 // indirect
36-
cloud.google.com/go/compute/metadata v0.2.3 // indirect
3735
github.com/Masterminds/goutils v1.1.1 // indirect
3836
github.com/Masterminds/semver/v3 v3.1.1 // indirect
3937
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
4038
github.com/armon/go-radix v1.0.0 // indirect
4139
github.com/bgentry/speakeasy v0.1.0 // indirect
4240
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
43-
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
4441
github.com/google/gnostic v0.6.9 // indirect
4542
github.com/huandu/xstrings v1.3.2 // indirect
4643
github.com/invopop/yaml v0.2.0 // indirect
4744
github.com/mitchellh/cli v1.1.4 // indirect
4845
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
4946
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5047
github.com/posener/complete v1.2.3 // indirect
48+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
5149
github.com/shopspring/decimal v1.3.1 // indirect
5250
github.com/spf13/cast v1.5.0 // indirect
5351
)
5452

5553
require (
5654
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
57-
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
58-
github.com/Azure/go-autorest/autorest v0.11.28 // indirect
59-
github.com/Azure/go-autorest/autorest/adal v0.9.21 // indirect
60-
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
61-
github.com/Azure/go-autorest/logger v0.2.1 // indirect
62-
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
6355
github.com/MakeNowJust/heredoc v1.0.0 // indirect
6456
github.com/agext/levenshtein v1.2.3 // indirect
6557
github.com/apparentlymart/go-cidr v1.1.0 // indirect
@@ -72,8 +64,8 @@ require (
7264
github.com/fatih/color v1.13.0 // indirect
7365
github.com/go-errors/errors v1.4.2 // indirect
7466
github.com/go-logr/logr v1.2.3 // indirect
75-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
76-
github.com/go-openapi/jsonreference v0.20.0 // indirect
67+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
68+
github.com/go-openapi/jsonreference v0.20.1 // indirect
7769
github.com/go-openapi/swag v0.22.3 // indirect
7870
github.com/gogo/protobuf v1.3.2 // indirect
7971
github.com/golang/protobuf v1.5.3 // indirect
@@ -137,26 +129,25 @@ require (
137129
gopkg.in/inf.v0 v0.9.1 // indirect
138130
gopkg.in/yaml.v2 v2.4.0 // indirect
139131
gopkg.in/yaml.v3 v3.0.1 // indirect
140-
k8s.io/cli-runtime v0.25.11 // indirect
141-
k8s.io/component-base v0.25.11 // indirect
142-
k8s.io/klog/v2 v2.80.1 // indirect
143-
k8s.io/kube-openapi v0.0.0-20221207184640-f3cff1453715 // indirect
144-
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448
132+
k8s.io/cli-runtime v0.27.7 // indirect
133+
k8s.io/component-base v0.27.7 // indirect
134+
k8s.io/klog/v2 v2.90.1 // indirect
135+
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
136+
k8s.io/utils v0.0.0-20230209194617-a36077c30491
145137
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
146-
sigs.k8s.io/kustomize/api v0.12.1 // indirect
147-
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect
138+
sigs.k8s.io/kustomize/api v0.13.2 // indirect
139+
sigs.k8s.io/kustomize/kyaml v0.14.1 // indirect
148140
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
149141
sigs.k8s.io/yaml v1.3.0 // indirect
150142
)
151143

152144
// kustomize needs to be kept in sync with the cli-runtime.
153145
// go-openapi needs to be locked at a version that is compatible with kustomize
154146
replace (
155-
github.com/go-openapi/spec => github.com/go-openapi/spec v0.19.9
156-
// k8s.io/cli-runtime => k8s.io/cli-runtime v0.25.5
157-
k8s.io/client-go => k8s.io/client-go v0.25.5
147+
github.com/go-openapi/spec => github.com/go-openapi/spec v0.20.9
148+
k8s.io/client-go => k8s.io/client-go v0.27.7
158149
// sigs.k8s.io/kustomize/pkg/transformers => ./vendor/k8s.io/cli-runtime/pkg/kustomize/k8sdeps/transformer
159150
// sigs.k8s.io/kustomize/pkg/transformers/config => ./vendor/k8s.io/cli-runtime/pkg/kustomize/k8sdeps/transformer/config
160151
)
161152

162-
go 1.20
153+
go 1.21

0 commit comments

Comments
 (0)