Skip to content

Commit 97b4e3e

Browse files
committed
feat: update Kubernetes to 1.28.0
See https://github.com/kubernetes/kubernetes/releases/tag/v1.28.0 Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
1 parent 79ca1a3 commit 97b4e3e

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ INTEGRATION_TEST_DEFAULT_TARGET := integration-test-$(OPERATING_SYSTEM)
5454
MODULE_SIG_VERIFY_DEFAULT_TARGET := module-sig-verify-$(OPERATING_SYSTEM)
5555
INTEGRATION_TEST_PROVISION_DEFAULT_TARGET := integration-test-provision-$(OPERATING_SYSTEM)
5656
# renovate: datasource=github-releases depName=kubernetes/kubernetes
57-
KUBECTL_VERSION ?= v1.28.0-rc.1
57+
KUBECTL_VERSION ?= v1.28.0
5858
# renovate: datasource=github-releases depName=kastenhq/kubestr
5959
KUBESTR_VERSION ?= v0.4.41
6060
# renovate: datasource=github-releases depName=helm/helm

hack/release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ preface = """\
2222
* containerd: 1.6.22
2323
* runc: 1.1.8
2424
* etcd: 3.5.9
25-
* Kubernetes: 1.28.0-rc.1
25+
* Kubernetes: 1.28.0
2626
* Flannel: 0.22.1
2727
2828
Talos is built with Go 1.20.7.

hack/test/e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export TALOS_VERSION=v1.1
4040
# Kubernetes
4141

4242
export KUBECONFIG="${TMP}/kubeconfig"
43-
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.28.0-rc.1}
43+
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.28.0}
4444

4545
export NAME_PREFIX="talos-e2e-${SHA}-${PLATFORM}"
4646
export TIMEOUT=1200

pkg/machinery/constants/constants.go

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

309309
// DefaultKubernetesVersion is the default target version of the control plane.
310310
// renovate: datasource=github-releases depName=kubernetes/kubernetes
311-
DefaultKubernetesVersion = "1.28.0-rc.1"
311+
DefaultKubernetesVersion = "1.28.0"
312312

313313
// DefaultControlPlanePort is the default port to use for the control plane.
314314
DefaultControlPlanePort = 6443

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ talosctl cluster create [flags]
133133
--ipv6 enable IPv6 network in the cluster (QEMU provisioner only)
134134
--iso-path string the ISO path to use for the initial boot (VM only)
135135
--kubeprism-port int KubePrism port (defaults to 0 - disabled)
136-
--kubernetes-version string desired kubernetes version to run (default "1.28.0-rc.1")
136+
--kubernetes-version string desired kubernetes version to run (default "1.28.0")
137137
--memory int the limit on memory usage in MB (each control plane/VM) (default 2048)
138138
--memory-workers int the limit on memory usage in MB (each worker/VM) (default 2048)
139139
--mtu int MTU of the cluster network (default 1500)
@@ -1328,7 +1328,7 @@ talosctl gen config <cluster name> <cluster endpoint> [flags]
13281328
-h, --help help for config
13291329
--install-disk string the disk to install to (default "/dev/sda")
13301330
--install-image string the image used to perform an installation (default "ghcr.io/siderolabs/installer:latest")
1331-
--kubernetes-version string desired kubernetes version to run (default "1.28.0-rc.1")
1331+
--kubernetes-version string desired kubernetes version to run (default "1.28.0")
13321332
-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
13331333
-t, --output-types strings types of outputs to be generated. valid types are: ["controlplane" "worker" "talosconfig"] (default [controlplane,worker,talosconfig])
13341334
-p, --persist the desired persist value for configs (default true)
@@ -2886,7 +2886,7 @@ talosctl upgrade-k8s [flags]
28862886
--from string the Kubernetes control plane version to upgrade from
28872887
-h, --help help for upgrade-k8s
28882888
--pre-pull-images pre-pull images before upgrade (default true)
2889-
--to string the Kubernetes control plane version to upgrade to (default "1.28.0-rc.1")
2889+
--to string the Kubernetes control plane version to upgrade to (default "1.28.0")
28902890
--upgrade-kubelet upgrade kubelet service (default true)
28912891
```
28922892

website/content/v1.5/reference/configuration.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ controlPlane:
101101
{{< /highlight >}}</details> | |
102102
|`kubelet` |<a href="#kubeletconfig">KubeletConfig</a> |Used to provide additional options to the kubelet. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
103103
kubelet:
104-
image: ghcr.io/siderolabs/kubelet:v1.28.0-rc.1 # The `image` field is an optional reference to an alternative kubelet image.
104+
image: ghcr.io/siderolabs/kubelet:v1.28.0 # The `image` field is an optional reference to an alternative kubelet image.
105105
# The `extraArgs` field is used to provide additional flags to the kubelet.
106106
extraArgs:
107107
feature-gates: ServerSideApply=true
@@ -523,7 +523,7 @@ serviceAccount:
523523
{{< /highlight >}}</details> | |
524524
|`apiServer` |<a href="#apiserverconfig">APIServerConfig</a> |API server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
525525
apiServer:
526-
image: registry.k8s.io/kube-apiserver:v1.28.0-rc.1 # The container image used in the API server manifest.
526+
image: registry.k8s.io/kube-apiserver:v1.28.0 # The container image used in the API server manifest.
527527
# Extra arguments to supply to the API server.
528528
extraArgs:
529529
feature-gates: ServerSideApply=true
@@ -562,14 +562,14 @@ apiServer:
562562
{{< /highlight >}}</details> | |
563563
|`controllerManager` |<a href="#controllermanagerconfig">ControllerManagerConfig</a> |Controller manager server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
564564
controllerManager:
565-
image: registry.k8s.io/kube-controller-manager:v1.28.0-rc.1 # The container image used in the controller manager manifest.
565+
image: registry.k8s.io/kube-controller-manager:v1.28.0 # The container image used in the controller manager manifest.
566566
# Extra arguments to supply to the controller manager.
567567
extraArgs:
568568
feature-gates: ServerSideApply=true
569569
{{< /highlight >}}</details> | |
570570
|`proxy` |<a href="#proxyconfig">ProxyConfig</a> |Kube-proxy server-specific configuration options <details><summary>Show example(s)</summary>{{< highlight yaml >}}
571571
proxy:
572-
image: registry.k8s.io/kube-proxy:v1.28.0-rc.1 # The container image used in the kube-proxy manifest.
572+
image: registry.k8s.io/kube-proxy:v1.28.0 # The container image used in the kube-proxy manifest.
573573
mode: ipvs # proxy mode of kube-proxy.
574574
# Extra arguments to supply to kube-proxy.
575575
extraArgs:
@@ -580,7 +580,7 @@ proxy:
580580
{{< /highlight >}}</details> | |
581581
|`scheduler` |<a href="#schedulerconfig">SchedulerConfig</a> |Scheduler server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
582582
scheduler:
583-
image: registry.k8s.io/kube-scheduler:v1.28.0-rc.1 # The container image used in the scheduler manifest.
583+
image: registry.k8s.io/kube-scheduler:v1.28.0 # The container image used in the scheduler manifest.
584584
# Extra arguments to supply to the scheduler.
585585
extraArgs:
586586
feature-gates: AllBeta=true
@@ -747,7 +747,7 @@ Appears in:
747747

748748

749749
{{< highlight yaml >}}
750-
image: ghcr.io/siderolabs/kubelet:v1.28.0-rc.1 # The `image` field is an optional reference to an alternative kubelet image.
750+
image: ghcr.io/siderolabs/kubelet:v1.28.0 # The `image` field is an optional reference to an alternative kubelet image.
751751
# The `extraArgs` field is used to provide additional flags to the kubelet.
752752
extraArgs:
753753
feature-gates: ServerSideApply=true
@@ -784,7 +784,7 @@ extraArgs:
784784
| Field | Type | Description | Value(s) |
785785
|-------|------|-------------|----------|
786786
|`image` |string |The `image` field is an optional reference to an alternative kubelet image. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
787-
image: ghcr.io/siderolabs/kubelet:v1.28.0-rc.1
787+
image: ghcr.io/siderolabs/kubelet:v1.28.0
788788
{{< /highlight >}}</details> | |
789789
|`clusterDNS` |[]string |The `ClusterDNS` field is an optional reference to an alternative kubelet clusterDNS ip list. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
790790
clusterDNS:
@@ -1407,7 +1407,7 @@ Appears in:
14071407

14081408

14091409
{{< highlight yaml >}}
1410-
image: registry.k8s.io/kube-apiserver:v1.28.0-rc.1 # The container image used in the API server manifest.
1410+
image: registry.k8s.io/kube-apiserver:v1.28.0 # The container image used in the API server manifest.
14111411
# Extra arguments to supply to the API server.
14121412
extraArgs:
14131413
feature-gates: ServerSideApply=true
@@ -1449,7 +1449,7 @@ certSANs:
14491449
| Field | Type | Description | Value(s) |
14501450
|-------|------|-------------|----------|
14511451
|`image` |string |The container image used in the API server manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
1452-
image: registry.k8s.io/kube-apiserver:v1.28.0-rc.1
1452+
image: registry.k8s.io/kube-apiserver:v1.28.0
14531453
{{< /highlight >}}</details> | |
14541454
|`extraArgs` |map[string]string |Extra arguments to supply to the API server. | |
14551455
|`extraVolumes` |[]<a href="#volumemountconfig">VolumeMountConfig</a> |Extra volumes to mount to the API server static pod. | |
@@ -1536,7 +1536,7 @@ Appears in:
15361536

15371537

15381538
{{< highlight yaml >}}
1539-
image: registry.k8s.io/kube-controller-manager:v1.28.0-rc.1 # The container image used in the controller manager manifest.
1539+
image: registry.k8s.io/kube-controller-manager:v1.28.0 # The container image used in the controller manager manifest.
15401540
# Extra arguments to supply to the controller manager.
15411541
extraArgs:
15421542
feature-gates: ServerSideApply=true
@@ -1546,7 +1546,7 @@ extraArgs:
15461546
| Field | Type | Description | Value(s) |
15471547
|-------|------|-------------|----------|
15481548
|`image` |string |The container image used in the controller manager manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
1549-
image: registry.k8s.io/kube-controller-manager:v1.28.0-rc.1
1549+
image: registry.k8s.io/kube-controller-manager:v1.28.0
15501550
{{< /highlight >}}</details> | |
15511551
|`extraArgs` |map[string]string |Extra arguments to supply to the controller manager. | |
15521552
|`extraVolumes` |[]<a href="#volumemountconfig">VolumeMountConfig</a> |Extra volumes to mount to the controller manager static pod. | |
@@ -1566,7 +1566,7 @@ Appears in:
15661566

15671567

15681568
{{< highlight yaml >}}
1569-
image: registry.k8s.io/kube-proxy:v1.28.0-rc.1 # The container image used in the kube-proxy manifest.
1569+
image: registry.k8s.io/kube-proxy:v1.28.0 # The container image used in the kube-proxy manifest.
15701570
mode: ipvs # proxy mode of kube-proxy.
15711571
# Extra arguments to supply to kube-proxy.
15721572
extraArgs:
@@ -1583,7 +1583,7 @@ extraArgs:
15831583
disabled: false
15841584
{{< /highlight >}}</details> | |
15851585
|`image` |string |The container image used in the kube-proxy manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
1586-
image: registry.k8s.io/kube-proxy:v1.28.0-rc.1
1586+
image: registry.k8s.io/kube-proxy:v1.28.0
15871587
{{< /highlight >}}</details> | |
15881588
|`mode` |string |<details><summary>proxy mode of kube-proxy.</summary>The default is 'iptables'.</details> | |
15891589
|`extraArgs` |map[string]string |Extra arguments to supply to kube-proxy. | |
@@ -1601,7 +1601,7 @@ Appears in:
16011601

16021602

16031603
{{< highlight yaml >}}
1604-
image: registry.k8s.io/kube-scheduler:v1.28.0-rc.1 # The container image used in the scheduler manifest.
1604+
image: registry.k8s.io/kube-scheduler:v1.28.0 # The container image used in the scheduler manifest.
16051605
# Extra arguments to supply to the scheduler.
16061606
extraArgs:
16071607
feature-gates: AllBeta=true
@@ -1611,7 +1611,7 @@ extraArgs:
16111611
| Field | Type | Description | Value(s) |
16121612
|-------|------|-------------|----------|
16131613
|`image` |string |The container image used in the scheduler manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
1614-
image: registry.k8s.io/kube-scheduler:v1.28.0-rc.1
1614+
image: registry.k8s.io/kube-scheduler:v1.28.0
16151615
{{< /highlight >}}</details> | |
16161616
|`extraArgs` |map[string]string |Extra arguments to supply to the scheduler. | |
16171617
|`extraVolumes` |[]<a href="#volumemountconfig">VolumeMountConfig</a> |Extra volumes to mount to the scheduler static pod. | |

0 commit comments

Comments
 (0)