Skip to content

Commit 1310817

Browse files
Bump Kubernetes dependencies to v1.33 (#2774)
Co-authored-by: Aleksandr Rybolovlev <[email protected]>
1 parent dafa40a commit 1310817

21 files changed

+228
-1827
lines changed

.changelog/2774.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
Bump Kubernetes dependencies to v1.33
3+
```

.github/workflows/acceptance_tests_kind.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,25 @@ on:
2727

2828
env:
2929
KUBECONFIG: ${{ github.workspace }}/.kube/config
30-
KIND_VERSION: ${{ github.event.inputs.kindVersion || '0.25.0' }}
30+
KIND_VERSION: ${{ github.event.inputs.kindVersion || '0.30.0' }}
3131
PARALLEL_RUNS: ${{ github.event.inputs.parallelRuns || '8' }}
3232
TERRAFORM_VERSION: ${{ github.event.inputs.terraformVersion || '1.12.0' }}
3333

3434
jobs:
3535
acceptance_tests_kind:
3636
if: ${{ github.repository_owner == 'hashicorp' }}
37-
runs-on: custom-linux-medium
37+
runs-on: custom-linux-large
3838
strategy:
3939
# Don't cancel all in-progress and queued jobs in the matrix if any job in the matrix fails.
4040
# That will be helpful to catch any issues related to a particular Kubernetes version.
4141
fail-fast: false
4242
matrix:
4343
kubernetes_version:
4444
# kind images: https://github.com/kubernetes-sigs/kind/releases (note the images are kind release specific)
45-
- v1.30.6@sha256:b6d08db72079ba5ae1f4a88a09025c0a904af3b52387643c285442afb05ab994
46-
- v1.29.10@sha256:3b2d8c31753e6c8069d4fc4517264cd20e86fd36220671fb7d0a5855103aa84b
47-
- v1.28.15@sha256:a7c05c7ae043a0b8c818f5a06188bc2c4098f6cb59ca7d1856df00375d839251
48-
- v1.27.16@sha256:2d21a61643eafc439905e18705b8186f3296384750a835ad7a005dceb9546d20
49-
- v1.26.6@sha256:6e2d8b28a5b601defe327b98bd1c2d1930b49e5d8c512e1895099e4504007adb
50-
- v1.26.15@sha256:c79602a44b4056d7e48dc20f7504350f1e87530fe953428b792def00bc1076dd
45+
- v1.34.0@sha256:7416a61b42b1662ca6ca89f02028ac133a309a2a30ba309614e8ec94d976dc5a
46+
- v1.33.4@sha256:25a6018e48dfcaee478f4a59af81157a437f15e6e140bf103f85a2e7cd0cbbf2
47+
- v1.32.8@sha256:abd489f042d2b644e2d033f5c2d900bc707798d075e8186cb65e3f1367a9d5a1
48+
- v1.31.12@sha256:0f5cc49c5e73c0c2bb6e2df56e7df189240d83cf94edfa30946482eb08ec57d2
5149
isMajorReleaseBranch:
5250
- ${{ contains(github.ref, 'v3-major-release') }}
5351
isBaseMajorRelease:
@@ -74,7 +72,7 @@ jobs:
7472
terraform_version: ${{ env.TERRAFORM_VERSION }}
7573
terraform_wrapper: false
7674
- name: Setup kind
77-
uses: helm/kind-action@99576bfa6ddf9a8e612d83b513da5a75875caced # v1.9.0
75+
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
7876
with:
7977
wait: 2m
8078
version: v${{ env.KIND_VERSION }}

go.mod

Lines changed: 63 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ require (
66
github.com/Masterminds/semver v1.5.0
77
github.com/getkin/kin-openapi v0.111.0
88
github.com/google/go-cmp v0.7.0
9+
github.com/hashicorp/go-cty v1.5.0
910
github.com/hashicorp/go-hclog v1.6.3
1011
github.com/hashicorp/go-plugin v1.7.0
1112
github.com/hashicorp/go-version v1.7.0
@@ -22,136 +23,137 @@ require (
2223
github.com/hashicorp/terraform-plugin-testing v1.13.3
2324
github.com/jinzhu/copier v0.3.5
2425
github.com/mitchellh/go-homedir v1.1.0
26+
github.com/mitchellh/go-testing-interface v1.14.1
2527
github.com/mitchellh/hashstructure v1.1.0
2628
github.com/robfig/cron v1.2.0
27-
github.com/stretchr/testify v1.8.3
29+
github.com/stretchr/testify v1.10.0
30+
github.com/zclconf/go-cty v1.16.4
2831
golang.org/x/mod v0.25.0
29-
k8s.io/api v0.28.6
30-
k8s.io/apiextensions-apiserver v0.28.6
31-
k8s.io/apimachinery v0.28.6
32-
k8s.io/client-go v0.28.6
33-
k8s.io/kube-aggregator v0.28.6
34-
k8s.io/kubectl v0.28.6
35-
k8s.io/kubernetes v1.28.6
32+
google.golang.org/grpc v1.72.1
33+
k8s.io/api v0.33.4
34+
k8s.io/apiextensions-apiserver v0.33.4
35+
k8s.io/apimachinery v0.33.4
36+
k8s.io/client-go v0.33.4
37+
k8s.io/kube-aggregator v0.33.4
38+
k8s.io/kubectl v0.33.4
39+
k8s.io/kubernetes v1.33.4
40+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
3641
sigs.k8s.io/yaml v1.4.0
3742
)
3843

3944
require (
45+
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
4046
github.com/BurntSushi/toml v1.2.1 // indirect
4147
github.com/Kunde21/markdownfmt/v3 v3.1.0 // indirect
48+
github.com/MakeNowJust/heredoc v1.0.0 // indirect
4249
github.com/Masterminds/goutils v1.1.1 // indirect
4350
github.com/Masterminds/semver/v3 v3.2.0 // indirect
4451
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
4552
github.com/ProtonMail/go-crypto v1.1.6 // indirect
53+
github.com/agext/levenshtein v1.2.2 // indirect
4654
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
4755
github.com/armon/go-radix v1.0.0 // indirect
4856
github.com/bgentry/speakeasy v0.1.0 // indirect
57+
github.com/blang/semver/v4 v4.0.0 // indirect
4958
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
50-
github.com/cloudflare/circl v1.6.1 // indirect
51-
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
52-
github.com/google/gnostic-models v0.6.8 // indirect
53-
github.com/hashicorp/cli v1.1.7 // indirect
54-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
55-
github.com/huandu/xstrings v1.3.3 // indirect
56-
github.com/invopop/yaml v0.2.0 // indirect
57-
github.com/mattn/go-runewidth v0.0.9 // indirect
58-
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
59-
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
60-
github.com/posener/complete v1.2.3 // indirect
61-
github.com/russross/blackfriday/v2 v2.1.0 // indirect
62-
github.com/shopspring/decimal v1.3.1 // indirect
63-
github.com/spf13/cast v1.5.0 // indirect
64-
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
65-
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
66-
github.com/yuin/goldmark v1.7.7 // indirect
67-
github.com/yuin/goldmark-meta v1.1.0 // indirect
68-
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
69-
golang.org/x/exp v0.0.0-20230809150735-7b3493d9a819 // indirect
70-
golang.org/x/sync v0.15.0 // indirect
71-
golang.org/x/tools v0.33.0 // indirect
72-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
73-
)
74-
75-
require (
76-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
77-
github.com/MakeNowJust/heredoc v1.0.0 // indirect
78-
github.com/agext/levenshtein v1.2.3 // indirect
7959
github.com/chai2010/gettext-go v1.0.2 // indirect
60+
github.com/cloudflare/circl v1.6.1 // indirect
8061
github.com/davecgh/go-spew v1.1.1 // indirect
81-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
62+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
8263
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
8364
github.com/fatih/camelcase v1.0.0 // indirect
8465
github.com/fatih/color v1.16.0 // indirect
66+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
8567
github.com/go-errors/errors v1.4.2 // indirect
8668
github.com/go-logr/logr v1.4.2 // indirect
87-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
69+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
8870
github.com/go-openapi/jsonreference v0.20.2 // indirect
89-
github.com/go-openapi/swag v0.22.3 // indirect
71+
github.com/go-openapi/swag v0.23.0 // indirect
9072
github.com/gogo/protobuf v1.3.2 // indirect
9173
github.com/golang/protobuf v1.5.4 // indirect
92-
github.com/google/btree v1.1.2 // indirect
93-
github.com/google/gofuzz v1.2.0 // indirect
74+
github.com/google/btree v1.1.3 // indirect
75+
github.com/google/gnostic-models v0.6.9 // indirect
9476
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
9577
github.com/google/uuid v1.6.0 // indirect
78+
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
9679
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
80+
github.com/hashicorp/cli v1.1.7 // indirect
9781
github.com/hashicorp/errwrap v1.1.0 // indirect
9882
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
9983
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
100-
github.com/hashicorp/go-cty v1.5.0
10184
github.com/hashicorp/go-multierror v1.1.1 // indirect
85+
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
10286
github.com/hashicorp/go-uuid v1.0.3 // indirect
10387
github.com/hashicorp/logutils v1.0.0 // indirect
10488
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
10589
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
10690
github.com/hashicorp/yamux v0.1.2 // indirect
91+
github.com/huandu/xstrings v1.3.3 // indirect
10792
github.com/imdario/mergo v0.3.15 // indirect
10893
github.com/inconshreveable/mousetrap v1.1.0 // indirect
94+
github.com/invopop/yaml v0.1.0 // indirect
10995
github.com/josharian/intern v1.0.0 // indirect
11096
github.com/json-iterator/go v1.1.12 // indirect
11197
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
11298
github.com/mailru/easyjson v0.7.7 // indirect
11399
github.com/mattn/go-colorable v0.1.14 // indirect
114100
github.com/mattn/go-isatty v0.0.20 // indirect
101+
github.com/mattn/go-runewidth v0.0.9 // indirect
115102
github.com/mitchellh/copystructure v1.2.0 // indirect
116-
github.com/mitchellh/go-testing-interface v1.14.1
117103
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
118104
github.com/mitchellh/mapstructure v1.5.0 // indirect
119105
github.com/mitchellh/reflectwalk v1.0.2 // indirect
120-
github.com/moby/spdystream v0.2.0 // indirect
121-
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
106+
github.com/moby/spdystream v0.5.0 // indirect
107+
github.com/moby/term v0.5.0 // indirect
122108
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
123109
github.com/modern-go/reflect2 v1.0.2 // indirect
110+
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
124111
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
112+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
113+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
125114
github.com/oklog/run v1.1.0 // indirect
126115
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
127116
github.com/pkg/errors v0.9.1 // indirect
128117
github.com/pmezard/go-difflib v1.0.0 // indirect
129-
github.com/spf13/cobra v1.7.0 // indirect
118+
github.com/posener/complete v1.2.3 // indirect
119+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
120+
github.com/shopspring/decimal v1.3.1 // indirect
121+
github.com/spf13/cast v1.5.0 // indirect
122+
github.com/spf13/cobra v1.8.1 // indirect
130123
github.com/spf13/pflag v1.0.5 // indirect
131124
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
125+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
126+
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
127+
github.com/x448/float16 v0.8.4 // indirect
132128
github.com/xlab/treeprint v1.2.0 // indirect
133-
github.com/zclconf/go-cty v1.16.4
134-
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
129+
github.com/yuin/goldmark v1.7.7 // indirect
130+
github.com/yuin/goldmark-meta v1.1.0 // indirect
131+
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
135132
golang.org/x/crypto v0.39.0 // indirect
133+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
136134
golang.org/x/net v0.40.0 // indirect
137-
golang.org/x/oauth2 v0.26.0 // indirect
135+
golang.org/x/oauth2 v0.27.0 // indirect
136+
golang.org/x/sync v0.15.0 // indirect
138137
golang.org/x/sys v0.33.0 // indirect
139138
golang.org/x/term v0.32.0 // indirect
140139
golang.org/x/text v0.26.0 // indirect
141-
golang.org/x/time v0.3.0 // indirect
140+
golang.org/x/time v0.9.0 // indirect
141+
golang.org/x/tools v0.33.0 // indirect
142142
google.golang.org/appengine v1.6.8 // indirect
143-
google.golang.org/grpc v1.72.1
143+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
144144
google.golang.org/protobuf v1.36.6 // indirect
145+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
145146
gopkg.in/inf.v0 v0.9.1 // indirect
146147
gopkg.in/yaml.v2 v2.4.0 // indirect
147148
gopkg.in/yaml.v3 v3.0.1 // indirect
148-
k8s.io/cli-runtime v0.28.6 // indirect
149-
k8s.io/component-base v0.28.6 // indirect
150-
k8s.io/klog/v2 v2.100.1 // indirect
151-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
152-
k8s.io/utils v0.0.0-20231127182322-b307cd553661
153-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
154-
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
155-
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect
156-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
149+
k8s.io/cli-runtime v0.33.4 // indirect
150+
k8s.io/component-base v0.33.4 // indirect
151+
k8s.io/component-helpers v0.33.4 // indirect
152+
k8s.io/klog/v2 v2.130.1 // indirect
153+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
154+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
155+
sigs.k8s.io/kustomize/api v0.19.0 // indirect
156+
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
157+
sigs.k8s.io/randfill v1.0.0 // indirect
158+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
157159
)

0 commit comments

Comments
 (0)