Skip to content

Commit e542f4f

Browse files
authored
bump k8s.io packages to v0.29.0 (#1419)
* bump k8s.io packages to v0.29.0 * update Go to 1.21 * update schemas
1 parent e4363a1 commit e542f4f

11 files changed

+2081
-231
lines changed

.github/workflows/build-test-deploy.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/setup-go@v5
3232
with:
33-
go-version: "1.20"
33+
go-version: "1.21"
3434

3535
- name: setup env
3636
run: |
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- uses: actions/setup-go@v5
4949
with:
50-
go-version: "1.20"
50+
go-version: "1.21"
5151

5252
- name: setup env
5353
run: |
@@ -59,7 +59,7 @@ jobs:
5959
- uses: replicatedhq/action-k3s@main
6060
id: k3s
6161
with:
62-
version: v1.23.6-k3s1
62+
version: v1.24.1-k3s1
6363

6464
- run: make test-integration
6565

@@ -68,7 +68,7 @@ jobs:
6868
steps:
6969
- uses: actions/setup-go@v5
7070
with:
71-
go-version: "1.20"
71+
go-version: "1.21"
7272
- name: setup env
7373
run: |
7474
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
@@ -84,7 +84,7 @@ jobs:
8484
steps:
8585
- uses: actions/setup-go@v5
8686
with:
87-
go-version: "1.20"
87+
go-version: "1.21"
8888
- name: setup env
8989
run: |
9090
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
@@ -173,7 +173,7 @@ jobs:
173173
steps:
174174
- uses: actions/setup-go@v5
175175
with:
176-
go-version: "1.20"
176+
go-version: "1.21"
177177
- name: setup env
178178
run: |
179179
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
@@ -228,7 +228,7 @@ jobs:
228228
steps:
229229
- uses: actions/setup-go@v5
230230
with:
231-
go-version: "1.20"
231+
go-version: "1.21"
232232
- name: setup env
233233
run: |
234234
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
@@ -248,7 +248,7 @@ jobs:
248248
steps:
249249
- uses: actions/setup-go@v5
250250
with:
251-
go-version: "1.20"
251+
go-version: "1.21"
252252
- name: setup env
253253
run: |
254254
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
@@ -281,7 +281,7 @@ jobs:
281281

282282
- uses: actions/setup-go@v5
283283
with:
284-
go-version: "1.20"
284+
go-version: "1.21"
285285

286286
- name: Run GoReleaser
287287
uses: goreleaser/goreleaser-action@v5
@@ -312,7 +312,7 @@ jobs:
312312

313313
- uses: actions/setup-go@v5
314314
with:
315-
go-version: "1.20"
315+
go-version: "1.21"
316316

317317
- uses: sigstore/cosign-installer@v3
318318
with:

.github/workflows/license.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717

1818
- name: Setup Go
1919
uses: actions/setup-go@v5
20+
with:
21+
go-version: 1.21
2022

2123
- name: Install Go deps
2224
run: go mod download

config/crds/troubleshoot.sh_collectors.yaml

Lines changed: 428 additions & 32 deletions
Large diffs are not rendered by default.

config/crds/troubleshoot.sh_preflights.yaml

Lines changed: 428 additions & 32 deletions
Large diffs are not rendered by default.

config/crds/troubleshoot.sh_supportbundles.yaml

Lines changed: 428 additions & 32 deletions
Large diffs are not rendered by default.

go.mod

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/replicatedhq/troubleshoot
22

3-
go 1.20
3+
go 1.21
4+
5+
toolchain go1.21.5
46

57
require (
68
github.com/ahmetalpbalkan/go-cursor v0.0.0-20131010032410-8136607ea412
@@ -42,13 +44,13 @@ require (
4244
golang.org/x/mod v0.14.0
4345
golang.org/x/sync v0.5.0
4446
gopkg.in/yaml.v2 v2.4.0
45-
k8s.io/api v0.28.4
46-
k8s.io/apiextensions-apiserver v0.28.4
47-
k8s.io/apimachinery v0.28.4
48-
k8s.io/apiserver v0.28.4
49-
k8s.io/cli-runtime v0.28.4
50-
k8s.io/client-go v0.28.4
51-
k8s.io/klog/v2 v2.100.1
47+
k8s.io/api v0.29.0
48+
k8s.io/apiextensions-apiserver v0.29.0
49+
k8s.io/apimachinery v0.29.0
50+
k8s.io/apiserver v0.29.0
51+
k8s.io/cli-runtime v0.29.0
52+
k8s.io/client-go v0.29.0
53+
k8s.io/klog/v2 v2.110.1
5254
oras.land/oras-go v1.2.4
5355
sigs.k8s.io/controller-runtime v0.16.3
5456
sigs.k8s.io/e2e-framework v0.3.0
@@ -81,6 +83,7 @@ require (
8183
github.com/google/go-containerregistry v0.16.1 // indirect
8284
github.com/google/s2a-go v0.1.7 // indirect
8385
github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect
86+
github.com/gorilla/websocket v1.5.0 // indirect
8487
github.com/gosuri/uitable v0.0.4 // indirect
8588
github.com/huandu/xstrings v1.4.0 // indirect
8689
github.com/jackc/pgpassfile v1.0.0 // indirect
@@ -93,6 +96,7 @@ require (
9396
github.com/mistifyio/go-zfs/v3 v3.0.1 // indirect
9497
github.com/mitchellh/copystructure v1.2.0 // indirect
9598
github.com/mitchellh/reflectwalk v1.0.2 // indirect
99+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
96100
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
97101
github.com/rubenv/sql-migrate v1.5.2 // indirect
98102
github.com/russross/blackfriday/v2 v2.1.0 // indirect
@@ -115,8 +119,8 @@ require (
115119
golang.org/x/tools v0.14.0 // indirect
116120
google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb // indirect
117121
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
118-
k8s.io/component-base v0.28.4 // indirect
119-
k8s.io/kubectl v0.28.4 // indirect
122+
k8s.io/component-base v0.29.0 // indirect
123+
k8s.io/kubectl v0.29.0 // indirect
120124
)
121125

122126
require (
@@ -151,7 +155,7 @@ require (
151155
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
152156
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
153157
github.com/felixge/httpsnoop v1.0.3 // indirect
154-
github.com/fsnotify/fsnotify v1.6.0 // indirect
158+
github.com/fsnotify/fsnotify v1.7.0 // indirect
155159
github.com/go-errors/errors v1.4.2 // indirect
156160
github.com/go-ole/go-ole v1.2.6 // indirect
157161
github.com/go-openapi/jsonpointer v0.19.6 // indirect
@@ -162,7 +166,7 @@ require (
162166
github.com/golang/protobuf v1.5.3 // indirect
163167
github.com/golang/snappy v0.0.4 // indirect
164168
github.com/google/btree v1.0.1 // indirect
165-
github.com/google/go-cmp v0.5.9 // indirect
169+
github.com/google/go-cmp v0.6.0 // indirect
166170
github.com/google/go-intervals v0.0.2 // indirect
167171
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
168172
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
@@ -246,14 +250,14 @@ require (
246250
gopkg.in/ini.v1 v1.67.0 // indirect
247251
gopkg.in/yaml.v3 v3.0.1 // indirect
248252
helm.sh/helm/v3 v3.13.3
249-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
250-
k8s.io/metrics v0.28.4
251-
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2
253+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
254+
k8s.io/metrics v0.29.0
255+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
252256
periph.io/x/host/v3 v3.8.2
253257
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
254258
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
255259
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect
256-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
260+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
257261
sigs.k8s.io/yaml v1.3.0
258262
)
259263

0 commit comments

Comments
 (0)