Skip to content

Commit 4940626

Browse files
authored
chore(chart): release 7.14.0 (#10411)
* chore(chart): release 7.14.0 * chore(code): fix lint * chore(go): bump Go version to 1.24.0 and update module dependencies * chore(go): update used go version to 1.24.0 * chore(docker): update base image to golang:1.24-alpine3.22 across all Dockerfiles
1 parent 7bb0900 commit 4940626

File tree

35 files changed

+573
-619
lines changed

35 files changed

+573
-619
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
dependencies:
22
- name: ingress-nginx
33
repository: https://kubernetes.github.io/ingress-nginx
4-
version: 4.12.0
4+
version: 4.13.3
55
- name: cert-manager
66
repository: https://charts.jetstack.io
7-
version: v1.16.2
7+
version: v1.19.1
88
- name: metrics-server
99
repository: https://kubernetes-sigs.github.io/metrics-server/
10-
version: 3.12.2
10+
version: 3.13.0
1111
- name: kong
1212
repository: https://charts.konghq.com
13-
version: 2.46.0
14-
digest: sha256:fa0fa7ff7e237c3db88016a57704d0f2c9f7dae9ac9b041a32112b6df35f8e23
15-
generated: "2025-01-10T12:28:39.253786876+01:00"
13+
version: 2.52.0
14+
digest: sha256:0fef614778e161890da3c3d80f4f709f4ada77c724bd9bf2a173ccac9300852d
15+
generated: "2025-10-30T10:43:34.473207542+01:00"

charts/kubernetes-dashboard/Chart.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
apiVersion: v2
1616
name: kubernetes-dashboard
17-
version: 7.13.0
17+
version: 7.14.0
1818
description: General-purpose web UI for Kubernetes clusters
1919
keywords:
2020
- kubernetes
@@ -32,18 +32,18 @@ kubeVersion: ">=1.21.0-0"
3232
dependencies:
3333
- name: ingress-nginx
3434
alias: nginx
35-
version: 4.12.0
35+
version: 4.13.3
3636
repository: https://kubernetes.github.io/ingress-nginx
3737
condition: nginx.enabled
3838
- name: cert-manager
39-
version: v1.16.2
39+
version: v1.19.1
4040
repository: https://charts.jetstack.io
4141
condition: cert-manager.enabled
4242
- name: metrics-server
43-
version: 3.12.2
43+
version: 3.13.0
4444
repository: https://kubernetes-sigs.github.io/metrics-server/
4545
condition: metrics-server.enabled
4646
- name: kong
47-
version: 2.46.0
47+
version: 2.52.0
4848
repository: https://charts.konghq.com
4949
condition: kong.enabled

charts/kubernetes-dashboard/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ auth:
145145
role: auth
146146
image:
147147
repository: docker.io/kubernetesui/dashboard-auth
148-
tag: 1.3.0
148+
tag: 1.4.0
149149
scaling:
150150
replicas: 1
151151
revisionHistoryLimit: 10
@@ -187,7 +187,7 @@ api:
187187
role: api
188188
image:
189189
repository: docker.io/kubernetesui/dashboard-api
190-
tag: 1.13.0
190+
tag: 1.14.0
191191
scaling:
192192
replicas: 1
193193
revisionHistoryLimit: 10

modules/api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN adduser \
2727
--uid "${UID}" \
2828
"${USER}"
2929

30-
FROM golang:1.23-alpine3.21 AS builder
30+
FROM golang:1.24-alpine3.22 AS builder
3131

3232
ARG TARGETARCH
3333
ARG TARGETOS

modules/api/dev.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
# ! Context expected to be set to "modules" dir !
1616

17-
FROM golang:1.23-alpine3.21 AS AIR
17+
FROM golang:1.24-alpine3.22 AS AIR
1818

1919
RUN go install github.com/air-verse/air@latest
2020

21-
FROM golang:1.23-alpine3.21
21+
FROM golang:1.24-alpine3.22
2222

2323
# Copy air binary
2424
COPY --from=AIR $GOPATH/bin/air $GOPATH/bin/air

modules/api/go.mod

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module k8s.io/dashboard/api
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/distribution/reference v0.6.0
@@ -9,8 +9,8 @@ require (
99
github.com/go-openapi/spec v0.21.0
1010
github.com/prometheus/client_golang v1.23.0
1111
github.com/samber/lo v1.51.0
12-
github.com/spf13/pflag v1.0.7
13-
golang.org/x/net v0.40.0
12+
github.com/spf13/pflag v1.0.10
13+
golang.org/x/net v0.46.0
1414
gopkg.in/igm/sockjs-go.v2 v2.1.0
1515
k8s.io/api v0.32.0
1616
k8s.io/apiextensions-apiserver v0.32.0
@@ -37,6 +37,7 @@ require (
3737
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3838
github.com/chai2010/gettext-go v1.0.3 // indirect
3939
github.com/cloudwego/base64x v0.1.4 // indirect
40+
github.com/creack/pty v1.1.24 // indirect
4041
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4142
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
4243
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
@@ -45,7 +46,7 @@ require (
4546
github.com/gin-contrib/sse v1.0.0 // indirect
4647
github.com/gin-gonic/gin v1.10.0 // indirect
4748
github.com/go-errors/errors v1.5.1 // indirect
48-
github.com/go-logr/logr v1.4.2 // indirect
49+
github.com/go-logr/logr v1.4.3 // indirect
4950
github.com/go-openapi/jsonpointer v0.21.0 // indirect
5051
github.com/go-openapi/jsonreference v0.21.0 // indirect
5152
github.com/go-openapi/swag v0.23.0 // indirect
@@ -60,6 +61,7 @@ require (
6061
github.com/google/gnostic-models v0.6.9 // indirect
6162
github.com/google/go-cmp v0.7.0 // indirect
6263
github.com/google/gofuzz v1.2.0 // indirect
64+
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6 // indirect
6365
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
6466
github.com/google/uuid v1.6.0 // indirect
6567
github.com/gorilla/websocket v1.5.3 // indirect
@@ -80,31 +82,35 @@ require (
8082
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
8183
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8284
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
85+
github.com/onsi/ginkgo/v2 v2.26.0 // indirect
86+
github.com/onsi/gomega v1.38.2 // indirect
8387
github.com/opencontainers/go-digest v1.0.0 // indirect
84-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
88+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
8589
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
8690
github.com/pkg/errors v0.9.1 // indirect
8791
github.com/prometheus/client_model v0.6.2 // indirect
8892
github.com/prometheus/common v0.65.0 // indirect
8993
github.com/prometheus/procfs v0.16.1 // indirect
90-
github.com/rogpeppe/go-internal v1.13.1 // indirect
94+
github.com/rogpeppe/go-internal v1.14.1 // indirect
9195
github.com/russross/blackfriday/v2 v2.1.0 // indirect
92-
github.com/spf13/cobra v1.8.1 // indirect
96+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
97+
github.com/spf13/cobra v1.10.1 // indirect
98+
github.com/stretchr/testify v1.11.1 // indirect
9399
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
94100
github.com/ugorji/go/codec v1.2.12 // indirect
95101
github.com/x448/float16 v0.8.4 // indirect
96102
github.com/xlab/treeprint v1.2.0 // indirect
97103
github.com/zeebo/xxh3 v1.0.2 // indirect
98104
golang.org/x/arch v0.13.0 // indirect
99-
golang.org/x/crypto v0.38.0 // indirect
105+
golang.org/x/crypto v0.43.0 // indirect
100106
golang.org/x/oauth2 v0.30.0 // indirect
101-
golang.org/x/sync v0.14.0 // indirect
102-
golang.org/x/sys v0.33.0 // indirect
103-
golang.org/x/term v0.32.0 // indirect
104-
golang.org/x/text v0.25.0 // indirect
107+
golang.org/x/sync v0.17.0 // indirect
108+
golang.org/x/sys v0.37.0 // indirect
109+
golang.org/x/term v0.36.0 // indirect
110+
golang.org/x/text v0.30.0 // indirect
105111
golang.org/x/time v0.9.0 // indirect
106-
golang.org/x/tools v0.29.0 // indirect
107-
google.golang.org/protobuf v1.36.6 // indirect
112+
golang.org/x/tools v0.38.0 // indirect
113+
google.golang.org/protobuf v1.36.8 // indirect
108114
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
109115
gopkg.in/inf.v0 v0.9.1 // indirect
110116
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)