Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions charts/kubernetes-dashboard/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
dependencies:
- name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.12.0
version: 4.13.3
- name: cert-manager
repository: https://charts.jetstack.io
version: v1.16.2
version: v1.19.1
- name: metrics-server
repository: https://kubernetes-sigs.github.io/metrics-server/
version: 3.12.2
version: 3.13.0
- name: kong
repository: https://charts.konghq.com
version: 2.46.0
digest: sha256:fa0fa7ff7e237c3db88016a57704d0f2c9f7dae9ac9b041a32112b6df35f8e23
generated: "2025-01-10T12:28:39.253786876+01:00"
version: 2.52.0
digest: sha256:0fef614778e161890da3c3d80f4f709f4ada77c724bd9bf2a173ccac9300852d
generated: "2025-10-30T10:43:34.473207542+01:00"
10 changes: 5 additions & 5 deletions charts/kubernetes-dashboard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

apiVersion: v2
name: kubernetes-dashboard
version: 7.13.0
version: 7.14.0
description: General-purpose web UI for Kubernetes clusters
keywords:
- kubernetes
Expand All @@ -32,18 +32,18 @@ kubeVersion: ">=1.21.0-0"
dependencies:
- name: ingress-nginx
alias: nginx
version: 4.12.0
version: 4.13.3
repository: https://kubernetes.github.io/ingress-nginx
condition: nginx.enabled
- name: cert-manager
version: v1.16.2
version: v1.19.1
repository: https://charts.jetstack.io
condition: cert-manager.enabled
- name: metrics-server
version: 3.12.2
version: 3.13.0
repository: https://kubernetes-sigs.github.io/metrics-server/
condition: metrics-server.enabled
- name: kong
version: 2.46.0
version: 2.52.0
repository: https://charts.konghq.com
condition: kong.enabled
4 changes: 2 additions & 2 deletions charts/kubernetes-dashboard/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ auth:
role: auth
image:
repository: docker.io/kubernetesui/dashboard-auth
tag: 1.3.0
tag: 1.4.0
scaling:
replicas: 1
revisionHistoryLimit: 10
Expand Down Expand Up @@ -187,7 +187,7 @@ api:
role: api
image:
repository: docker.io/kubernetesui/dashboard-api
tag: 1.13.0
tag: 1.14.0
scaling:
replicas: 1
revisionHistoryLimit: 10
Expand Down
2 changes: 1 addition & 1 deletion modules/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN adduser \
--uid "${UID}" \
"${USER}"

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

ARG TARGETARCH
ARG TARGETOS
Expand Down
4 changes: 2 additions & 2 deletions modules/api/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

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

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

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

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

# Copy air binary
COPY --from=AIR $GOPATH/bin/air $GOPATH/bin/air
Expand Down
34 changes: 20 additions & 14 deletions modules/api/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k8s.io/dashboard/api

go 1.23.0
go 1.24.0

require (
github.com/distribution/reference v0.6.0
Expand All @@ -9,8 +9,8 @@ require (
github.com/go-openapi/spec v0.21.0
github.com/prometheus/client_golang v1.23.0
github.com/samber/lo v1.51.0
github.com/spf13/pflag v1.0.7
golang.org/x/net v0.40.0
github.com/spf13/pflag v1.0.10
golang.org/x/net v0.46.0
gopkg.in/igm/sockjs-go.v2 v2.1.0
k8s.io/api v0.32.0
k8s.io/apiextensions-apiserver v0.32.0
Expand All @@ -37,6 +37,7 @@ require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/chai2010/gettext-go v1.0.3 // indirect
github.com/cloudwego/base64x v0.1.4 // indirect
github.com/creack/pty v1.1.24 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
Expand All @@ -45,7 +46,7 @@ require (
github.com/gin-contrib/sse v1.0.0 // indirect
github.com/gin-gonic/gin v1.10.0 // indirect
github.com/go-errors/errors v1.5.1 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
github.com/go-openapi/jsonreference v0.21.0 // indirect
github.com/go-openapi/swag v0.23.0 // indirect
Expand All @@ -60,6 +61,7 @@ require (
github.com/google/gnostic-models v0.6.9 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
Expand All @@ -80,31 +82,35 @@ require (
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
github.com/onsi/ginkgo/v2 v2.26.0 // indirect
github.com/onsi/gomega v1.38.2 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_model v0.6.2 // indirect
github.com/prometheus/common v0.65.0 // indirect
github.com/prometheus/procfs v0.16.1 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spf13/cobra v1.8.1 // indirect
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
github.com/spf13/cobra v1.10.1 // indirect
github.com/stretchr/testify v1.11.1 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xlab/treeprint v1.2.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/arch v0.13.0 // indirect
golang.org/x/crypto v0.38.0 // indirect
golang.org/x/crypto v0.43.0 // indirect
golang.org/x/oauth2 v0.30.0 // indirect
golang.org/x/sync v0.14.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/term v0.32.0 // indirect
golang.org/x/text v0.25.0 // indirect
golang.org/x/sync v0.17.0 // indirect
golang.org/x/sys v0.37.0 // indirect
golang.org/x/term v0.36.0 // indirect
golang.org/x/text v0.30.0 // indirect
golang.org/x/time v0.9.0 // indirect
golang.org/x/tools v0.29.0 // indirect
google.golang.org/protobuf v1.36.6 // indirect
golang.org/x/tools v0.38.0 // indirect
google.golang.org/protobuf v1.36.8 // indirect
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading
Loading