Skip to content

Commit 3761e53

Browse files
committed
feat: update Kubernetes to 1.33.0
See https://github.com/kubernetes/kubernetes/releases/tag/v1.33.0 Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com> (cherry picked from commit 77c7a07)
1 parent 5205870 commit 3761e53

8 files changed

Lines changed: 56 additions & 56 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ INTEGRATION_TEST := integration-test
126126
INTEGRATION_TEST_DEFAULT_TARGET := $(INTEGRATION_TEST)-$(OPERATING_SYSTEM)
127127
INTEGRATION_TEST_PROVISION_DEFAULT_TARGET := integration-test-provision-$(OPERATING_SYSTEM)
128128
# renovate: datasource=github-releases depName=kubernetes/kubernetes
129-
KUBECTL_VERSION ?= v1.33.0-rc.1
129+
KUBECTL_VERSION ?= v1.33.0
130130
# renovate: datasource=github-releases depName=kastenhq/kubestr
131131
KUBESTR_VERSION ?= v0.4.48
132132
# renovate: datasource=github-releases depName=helm/helm

go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ replace github.com/insomniacslk/dhcp => github.com/smira/dhcp v0.0.0-20241001122
3535

3636
// Kubernetes dependencies sharing the same version.
3737
require (
38-
k8s.io/api v0.33.0-rc.1
39-
k8s.io/apimachinery v0.33.0-rc.1
40-
k8s.io/apiserver v0.33.0-rc.1
41-
k8s.io/client-go v0.33.0-rc.1
42-
k8s.io/component-base v0.33.0-rc.1
43-
k8s.io/cri-api v0.33.0-rc.1
44-
k8s.io/kube-scheduler v0.33.0-rc.1
45-
k8s.io/kubectl v0.33.0-rc.1
46-
k8s.io/kubelet v0.33.0-rc.1
47-
k8s.io/pod-security-admission v0.33.0-rc.1
38+
k8s.io/api v0.33.0
39+
k8s.io/apimachinery v0.33.0
40+
k8s.io/apiserver v0.33.0
41+
k8s.io/client-go v0.33.0
42+
k8s.io/component-base v0.33.0
43+
k8s.io/cri-api v0.33.0
44+
k8s.io/kube-scheduler v0.33.0
45+
k8s.io/kubectl v0.33.0
46+
k8s.io/kubelet v0.33.0
47+
k8s.io/pod-security-admission v0.33.0
4848
)
4949

5050
require (
@@ -364,7 +364,7 @@ require (
364364
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
365365
gopkg.in/inf.v0 v0.9.1 // indirect
366366
gopkg.in/yaml.v2 v2.4.0 // indirect
367-
k8s.io/cli-runtime v0.33.0-rc.1 // indirect
367+
k8s.io/cli-runtime v0.33.0 // indirect
368368
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
369369
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
370370
kernel.org/pub/linux/libs/security/libcap/psx v1.2.76 // indirect

go.sum

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,32 +1103,32 @@ gvisor.dev/gvisor v0.0.0-20240331093104-8c9cbf0d9090/go.mod h1:NQHVAzMwvZ+Qe3ElS
11031103
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
11041104
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
11051105
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
1106-
k8s.io/api v0.33.0-rc.1 h1:sG8QMXjzWG8AzlrsnLT6U5tGwRh4cz6+ScXUSuNvG3k=
1107-
k8s.io/api v0.33.0-rc.1/go.mod h1:bVqPTmo43oRKTo4GbLP6NoJzCgFX/mF8l5Mt3ZcZIqE=
1108-
k8s.io/apimachinery v0.33.0-rc.1 h1:D2AMBI3fCd1Vt6A+eIG2uv0O5S7zGTSxyffHeuTF7AE=
1109-
k8s.io/apimachinery v0.33.0-rc.1/go.mod h1:BHW0YOu7n22fFv/JkYOEfkUYNRN0fj0BlvMFWA7b+SM=
1110-
k8s.io/apiserver v0.33.0-rc.1 h1:EYU63wOMxMGhwUusV6TVyXSlz2sJSn1KnRb3ZQNLDcM=
1111-
k8s.io/apiserver v0.33.0-rc.1/go.mod h1:S9ZmIpyEn/ZHdKfd0TWB/44pbL3zEzMLRdVwKCzN+lY=
1112-
k8s.io/cli-runtime v0.33.0-rc.1 h1:Bi6Yu3kImjlCpv5BQiUp5JRGrff3HvUr/iF5c/R1RPs=
1113-
k8s.io/cli-runtime v0.33.0-rc.1/go.mod h1:21IHCXIz18xRo+kA3Z/ZgewIlY+4fwlSqHUsrJA6bKc=
1114-
k8s.io/client-go v0.33.0-rc.1 h1:YljlJ9qMRAM9pYk0jIBvBrU25nJgBtOeiKfbOL1hIBM=
1115-
k8s.io/client-go v0.33.0-rc.1/go.mod h1:Q4QM5/ZMG3bMNm0JXq+IkqmYnk4r9eKuvzRCacLAOAs=
1116-
k8s.io/component-base v0.33.0-rc.1 h1:UgjlcW0wDAZABTpX3ju/Ueueqh8pY75g+ThlxCK7quA=
1117-
k8s.io/component-base v0.33.0-rc.1/go.mod h1:61P5XbvkSpnHJzuORkokJTp/H60jQ95PWrpe77wnhE0=
1118-
k8s.io/cri-api v0.33.0-rc.1 h1:X+q2w2YNZPDHOjlaZ33LBhhKt6aeQf1uAeEiylb5H9o=
1119-
k8s.io/cri-api v0.33.0-rc.1/go.mod h1:OLQvT45OpIA+tv91ZrpuFIGY+Y2Ho23poS7n115Aocs=
1106+
k8s.io/api v0.33.0 h1:yTgZVn1XEe6opVpP1FylmNrIFWuDqe2H0V8CT5gxfIU=
1107+
k8s.io/api v0.33.0/go.mod h1:CTO61ECK/KU7haa3qq8sarQ0biLq2ju405IZAd9zsiM=
1108+
k8s.io/apimachinery v0.33.0 h1:1a6kHrJxb2hs4t8EE5wuR/WxKDwGN1FKH3JvDtA0CIQ=
1109+
k8s.io/apimachinery v0.33.0/go.mod h1:BHW0YOu7n22fFv/JkYOEfkUYNRN0fj0BlvMFWA7b+SM=
1110+
k8s.io/apiserver v0.33.0 h1:QqcM6c+qEEjkOODHppFXRiw/cE2zP85704YrQ9YaBbc=
1111+
k8s.io/apiserver v0.33.0/go.mod h1:EixYOit0YTxt8zrO2kBU7ixAtxFce9gKGq367nFmqI8=
1112+
k8s.io/cli-runtime v0.33.0 h1:Lbl/pq/1o8BaIuyn+aVLdEPHVN665tBAXUePs8wjX7c=
1113+
k8s.io/cli-runtime v0.33.0/go.mod h1:QcA+r43HeUM9jXFJx7A+yiTPfCooau/iCcP1wQh4NFw=
1114+
k8s.io/client-go v0.33.0 h1:UASR0sAYVUzs2kYuKn/ZakZlcs2bEHaizrrHUZg0G98=
1115+
k8s.io/client-go v0.33.0/go.mod h1:kGkd+l/gNGg8GYWAPr0xF1rRKvVWvzh9vmZAMXtaKOg=
1116+
k8s.io/component-base v0.33.0 h1:Ot4PyJI+0JAD9covDhwLp9UNkUja209OzsJ4FzScBNk=
1117+
k8s.io/component-base v0.33.0/go.mod h1:aXYZLbw3kihdkOPMDhWbjGCO6sg+luw554KP51t8qCU=
1118+
k8s.io/cri-api v0.33.0 h1:YyGNgWmuSREqFPlP3XCstlHLilYdW898KwtKoaTYwBs=
1119+
k8s.io/cri-api v0.33.0/go.mod h1:OLQvT45OpIA+tv91ZrpuFIGY+Y2Ho23poS7n115Aocs=
11201120
k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=
11211121
k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
11221122
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff h1:/usPimJzUKKu+m+TE36gUyGcf03XZEP0ZIKgKj35LS4=
11231123
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8=
1124-
k8s.io/kube-scheduler v0.33.0-rc.1 h1:QEEX6RyjeNw+Qf/9JbsEkVvl4dxB0rKUf9MRWPEsl1A=
1125-
k8s.io/kube-scheduler v0.33.0-rc.1/go.mod h1:3LW8XBE/jco4ArtobkrCyp7nys3z3uX/5X8G+0dWYF8=
1126-
k8s.io/kubectl v0.33.0-rc.1 h1:RyIl9NECOwiUL8Gd4D0nT7SGk9tksYE8iqGYbPxiups=
1127-
k8s.io/kubectl v0.33.0-rc.1/go.mod h1:lL4/2VIfVCQFQ0JOwAHL2T+EyOmC3x+lpwZFgCHu0OQ=
1128-
k8s.io/kubelet v0.33.0-rc.1 h1:xN0HnFI7KcFW1INRjigRqlAWaD/6XASJrJkivezPLmg=
1129-
k8s.io/kubelet v0.33.0-rc.1/go.mod h1:A/YwBYyI2SPUNRq7Kmfh0KihP75EL0yrZIsShBlNMLM=
1130-
k8s.io/pod-security-admission v0.33.0-rc.1 h1:GRR6s73ut7cGlXkTj/eXekkkpShyR7u1+kZBnNf2U/U=
1131-
k8s.io/pod-security-admission v0.33.0-rc.1/go.mod h1:w5WF1D1s1tcXnNVRAIF5INQZn2iiX8enKbFNbk+Gp/o=
1124+
k8s.io/kube-scheduler v0.33.0 h1:G5psn7ynB5Vjfo0ia8uz32Gv46TRa5RgTq4PTm+yjR0=
1125+
k8s.io/kube-scheduler v0.33.0/go.mod h1:I+0aqwJ3G9f9pyfKfoN5b0uP9M6MinNpxXRlCXkM17E=
1126+
k8s.io/kubectl v0.33.0 h1:HiRb1yqibBSCqic4pRZP+viiOBAnIdwYDpzUFejs07g=
1127+
k8s.io/kubectl v0.33.0/go.mod h1:gAlGBuS1Jq1fYZ9AjGWbI/5Vk3M/VW2DK4g10Fpyn/0=
1128+
k8s.io/kubelet v0.33.0 h1:4pJA2Ge6Rp0kDNV76KH7pTBiaV2T1a1874QHMcubuSU=
1129+
k8s.io/kubelet v0.33.0/go.mod h1:iDnxbJQMy9DUNaML5L/WUlt3uJtNLWh7ZAe0JSp4Yi0=
1130+
k8s.io/pod-security-admission v0.33.0 h1:di/iicB5plCq+iQeqgf2s1N5DOSzTDiOOv5OiAbuYWE=
1131+
k8s.io/pod-security-admission v0.33.0/go.mod h1:McuUMtSclLNxQdCkDTTWqKR79jnpHT/022GuanVU/Wg=
11321132
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 h1:M3sRQVHv7vB20Xc2ybTt7ODCeFj6JSWYFzOFnYeS6Ro=
11331133
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
11341134
kernel.org/pub/linux/libs/security/libcap/cap v1.2.76 h1:mrdLPj8ujM6eIKGtd1PkkuCIodpFFDM42Cfm0YODkIM=

hack/release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ preface = """
2424
* containerd: 2.0.5
2525
* etcd: 3.5.20
2626
* Flannel: 0.26.7
27-
* Kubernetes: 1.33.0-rc.1
27+
* Kubernetes: 1.33.0
2828
* CoreDNS: 1.12.1
2929
3030
Talos is built with Go 1.24.2.

hack/test/e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export TALOS_VERSION
3333
# Kubernetes
3434

3535
export KUBECONFIG="${TMP}/kubeconfig"
36-
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.33.0-rc.1}
36+
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.33.0}
3737

3838
export NAME_PREFIX="talos-e2e-${SHA}-${PLATFORM}"
3939
export TIMEOUT=1200

pkg/machinery/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ const (
389389

390390
// DefaultKubernetesVersion is the default target version of the control plane.
391391
// renovate: datasource=github-releases depName=kubernetes/kubernetes
392-
DefaultKubernetesVersion = "1.33.0-rc.1"
392+
DefaultKubernetesVersion = "1.33.0"
393393

394394
// SupportedKubernetesVersions is the number of Kubernetes versions supported by Talos starting from DefaultKubernesVersion going backwards.
395395
SupportedKubernetesVersions = 6

website/content/v1.10/reference/cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ talosctl cluster create [flags]
186186
--ipxe-boot-script string iPXE boot script (URL) to use
187187
--iso-path string the ISO path to use for the initial boot (VM only)
188188
--kubeprism-port int KubePrism port (set to 0 to disable) (default 7445)
189-
--kubernetes-version string desired kubernetes version to run (default "1.33.0-rc.1")
189+
--kubernetes-version string desired kubernetes version to run (default "1.33.0")
190190
--memory int the limit on memory usage in MB (each control plane/VM) (default 2048)
191191
--memory-workers int the limit on memory usage in MB (each worker/VM) (default 2048)
192192
--mount mount attach a mount to the container (Docker only)
@@ -1363,7 +1363,7 @@ talosctl gen config <cluster name> <cluster endpoint> [flags]
13631363
-h, --help help for config
13641364
--install-disk string the disk to install to (default "/dev/sda")
13651365
--install-image string the image used to perform an installation (default "ghcr.io/siderolabs/installer:latest")
1366-
--kubernetes-version string desired kubernetes version to run (default "1.33.0-rc.1")
1366+
--kubernetes-version string desired kubernetes version to run (default "1.33.0")
13671367
-o, --output string destination to output generated files. when multiple output types are specified, it must be a directory. for a single output type, it must either be a file path, or "-" for stdout
13681368
-t, --output-types strings types of outputs to be generated. valid types are: ["controlplane" "worker" "talosconfig"] (default [controlplane,worker,talosconfig])
13691369
-p, --persist the desired persist value for configs (default true)
@@ -1796,7 +1796,7 @@ talosctl image cache-create [flags]
17961796
### Examples
17971797

17981798
```
1799-
talosctl images cache-create --images=ghcr.io/siderolabs/kubelet:v1.33.0-rc.1 --image-cache-path=/tmp/talos-image-cache
1799+
talosctl images cache-create --images=ghcr.io/siderolabs/kubelet:v1.33.0 --image-cache-path=/tmp/talos-image-cache
18001800
18011801
Alternatively, stdin can be piped to the command:
18021802
talosctl images default | talosctl images cache-create --image-cache-path=/tmp/talos-image-cache --images=-
@@ -3028,7 +3028,7 @@ talosctl upgrade-k8s [flags]
30283028
--pre-pull-images pre-pull images before upgrade (default true)
30293029
--proxy-image string kube-proxy image to use (default "registry.k8s.io/kube-proxy")
30303030
--scheduler-image string kube-scheduler image to use (default "registry.k8s.io/kube-scheduler")
3031-
--to string the Kubernetes control plane version to upgrade to (default "1.33.0-rc.1")
3031+
--to string the Kubernetes control plane version to upgrade to (default "1.33.0")
30323032
--upgrade-kubelet upgrade kubelet service (default true)
30333033
--with-docs patch all machine configs adding the documentation for each field (default true)
30343034
--with-examples patch all machine configs with the commented examples (default true)

website/content/v1.10/reference/configuration/v1alpha1/config.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ controlPlane:
8686
{{< /highlight >}}</details> | |
8787
|`kubelet` |<a href="#Config.machine.kubelet">KubeletConfig</a> |Used to provide additional options to the kubelet. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
8888
kubelet:
89-
image: ghcr.io/siderolabs/kubelet:v1.33.0-rc.1 # The `image` field is an optional reference to an alternative kubelet image.
89+
image: ghcr.io/siderolabs/kubelet:v1.33.0 # The `image` field is an optional reference to an alternative kubelet image.
9090
# The `extraArgs` field is used to provide additional flags to the kubelet.
9191
extraArgs:
9292
feature-gates: ServerSideApply=true
@@ -497,7 +497,7 @@ KubeletConfig represents the kubelet config values.
497497
{{< highlight yaml >}}
498498
machine:
499499
kubelet:
500-
image: ghcr.io/siderolabs/kubelet:v1.33.0-rc.1 # The `image` field is an optional reference to an alternative kubelet image.
500+
image: ghcr.io/siderolabs/kubelet:v1.33.0 # The `image` field is an optional reference to an alternative kubelet image.
501501
# The `extraArgs` field is used to provide additional flags to the kubelet.
502502
extraArgs:
503503
feature-gates: ServerSideApply=true
@@ -550,7 +550,7 @@ machine:
550550
| Field | Type | Description | Value(s) |
551551
|-------|------|-------------|----------|
552552
|`image` |string |The `image` field is an optional reference to an alternative kubelet image. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
553-
image: ghcr.io/siderolabs/kubelet:v1.33.0-rc.1
553+
image: ghcr.io/siderolabs/kubelet:v1.33.0
554554
{{< /highlight >}}</details> | |
555555
|`clusterDNS` |[]string |The `ClusterDNS` field is an optional reference to an alternative kubelet clusterDNS ip list. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
556556
clusterDNS:
@@ -2889,7 +2889,7 @@ serviceAccount:
28892889
{{< /highlight >}}</details> | |
28902890
|`apiServer` |<a href="#Config.cluster.apiServer">APIServerConfig</a> |API server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
28912891
apiServer:
2892-
image: registry.k8s.io/kube-apiserver:v1.33.0-rc.1 # The container image used in the API server manifest.
2892+
image: registry.k8s.io/kube-apiserver:v1.33.0 # The container image used in the API server manifest.
28932893
# Extra arguments to supply to the API server.
28942894
extraArgs:
28952895
feature-gates: ServerSideApply=true
@@ -2954,14 +2954,14 @@ apiServer:
29542954
{{< /highlight >}}</details> | |
29552955
|`controllerManager` |<a href="#Config.cluster.controllerManager">ControllerManagerConfig</a> |Controller manager server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
29562956
controllerManager:
2957-
image: registry.k8s.io/kube-controller-manager:v1.33.0-rc.1 # The container image used in the controller manager manifest.
2957+
image: registry.k8s.io/kube-controller-manager:v1.33.0 # The container image used in the controller manager manifest.
29582958
# Extra arguments to supply to the controller manager.
29592959
extraArgs:
29602960
feature-gates: ServerSideApply=true
29612961
{{< /highlight >}}</details> | |
29622962
|`proxy` |<a href="#Config.cluster.proxy">ProxyConfig</a> |Kube-proxy server-specific configuration options <details><summary>Show example(s)</summary>{{< highlight yaml >}}
29632963
proxy:
2964-
image: registry.k8s.io/kube-proxy:v1.33.0-rc.1 # The container image used in the kube-proxy manifest.
2964+
image: registry.k8s.io/kube-proxy:v1.33.0 # The container image used in the kube-proxy manifest.
29652965
mode: ipvs # proxy mode of kube-proxy.
29662966
# Extra arguments to supply to kube-proxy.
29672967
extraArgs:
@@ -2972,7 +2972,7 @@ proxy:
29722972
{{< /highlight >}}</details> | |
29732973
|`scheduler` |<a href="#Config.cluster.scheduler">SchedulerConfig</a> |Scheduler server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
29742974
scheduler:
2975-
image: registry.k8s.io/kube-scheduler:v1.33.0-rc.1 # The container image used in the scheduler manifest.
2975+
image: registry.k8s.io/kube-scheduler:v1.33.0 # The container image used in the scheduler manifest.
29762976
# Extra arguments to supply to the scheduler.
29772977
extraArgs:
29782978
feature-gates: AllBeta=true
@@ -3216,7 +3216,7 @@ APIServerConfig represents the kube apiserver configuration options.
32163216
{{< highlight yaml >}}
32173217
cluster:
32183218
apiServer:
3219-
image: registry.k8s.io/kube-apiserver:v1.33.0-rc.1 # The container image used in the API server manifest.
3219+
image: registry.k8s.io/kube-apiserver:v1.33.0 # The container image used in the API server manifest.
32203220
# Extra arguments to supply to the API server.
32213221
extraArgs:
32223222
feature-gates: ServerSideApply=true
@@ -3284,7 +3284,7 @@ cluster:
32843284
| Field | Type | Description | Value(s) |
32853285
|-------|------|-------------|----------|
32863286
|`image` |string |The container image used in the API server manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
3287-
image: registry.k8s.io/kube-apiserver:v1.33.0-rc.1
3287+
image: registry.k8s.io/kube-apiserver:v1.33.0
32883288
{{< /highlight >}}</details> | |
32893289
|`extraArgs` |map[string]string |Extra arguments to supply to the API server. | |
32903290
|`extraVolumes` |<a href="#Config.cluster.apiServer.extraVolumes.">[]VolumeMountConfig</a> |Extra volumes to mount to the API server static pod. | |
@@ -3496,7 +3496,7 @@ ControllerManagerConfig represents the kube controller manager configuration opt
34963496
{{< highlight yaml >}}
34973497
cluster:
34983498
controllerManager:
3499-
image: registry.k8s.io/kube-controller-manager:v1.33.0-rc.1 # The container image used in the controller manager manifest.
3499+
image: registry.k8s.io/kube-controller-manager:v1.33.0 # The container image used in the controller manager manifest.
35003500
# Extra arguments to supply to the controller manager.
35013501
extraArgs:
35023502
feature-gates: ServerSideApply=true
@@ -3506,7 +3506,7 @@ cluster:
35063506
| Field | Type | Description | Value(s) |
35073507
|-------|------|-------------|----------|
35083508
|`image` |string |The container image used in the controller manager manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
3509-
image: registry.k8s.io/kube-controller-manager:v1.33.0-rc.1
3509+
image: registry.k8s.io/kube-controller-manager:v1.33.0
35103510
{{< /highlight >}}</details> | |
35113511
|`extraArgs` |map[string]string |Extra arguments to supply to the controller manager. | |
35123512
|`extraVolumes` |<a href="#Config.cluster.controllerManager.extraVolumes.">[]VolumeMountConfig</a> |Extra volumes to mount to the controller manager static pod. | |
@@ -3576,7 +3576,7 @@ ProxyConfig represents the kube proxy configuration options.
35763576
{{< highlight yaml >}}
35773577
cluster:
35783578
proxy:
3579-
image: registry.k8s.io/kube-proxy:v1.33.0-rc.1 # The container image used in the kube-proxy manifest.
3579+
image: registry.k8s.io/kube-proxy:v1.33.0 # The container image used in the kube-proxy manifest.
35803580
mode: ipvs # proxy mode of kube-proxy.
35813581
# Extra arguments to supply to kube-proxy.
35823582
extraArgs:
@@ -3593,7 +3593,7 @@ cluster:
35933593
disabled: false
35943594
{{< /highlight >}}</details> | |
35953595
|`image` |string |The container image used in the kube-proxy manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
3596-
image: registry.k8s.io/kube-proxy:v1.33.0-rc.1
3596+
image: registry.k8s.io/kube-proxy:v1.33.0
35973597
{{< /highlight >}}</details> | |
35983598
|`mode` |string |<details><summary>proxy mode of kube-proxy.</summary>The default is 'iptables'.</details> | |
35993599
|`extraArgs` |map[string]string |Extra arguments to supply to kube-proxy. | |
@@ -3612,7 +3612,7 @@ SchedulerConfig represents the kube scheduler configuration options.
36123612
{{< highlight yaml >}}
36133613
cluster:
36143614
scheduler:
3615-
image: registry.k8s.io/kube-scheduler:v1.33.0-rc.1 # The container image used in the scheduler manifest.
3615+
image: registry.k8s.io/kube-scheduler:v1.33.0 # The container image used in the scheduler manifest.
36163616
# Extra arguments to supply to the scheduler.
36173617
extraArgs:
36183618
feature-gates: AllBeta=true
@@ -3622,7 +3622,7 @@ cluster:
36223622
| Field | Type | Description | Value(s) |
36233623
|-------|------|-------------|----------|
36243624
|`image` |string |The container image used in the scheduler manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
3625-
image: registry.k8s.io/kube-scheduler:v1.33.0-rc.1
3625+
image: registry.k8s.io/kube-scheduler:v1.33.0
36263626
{{< /highlight >}}</details> | |
36273627
|`extraArgs` |map[string]string |Extra arguments to supply to the scheduler. | |
36283628
|`extraVolumes` |<a href="#Config.cluster.scheduler.extraVolumes.">[]VolumeMountConfig</a> |Extra volumes to mount to the scheduler static pod. | |

0 commit comments

Comments
 (0)