Skip to content

Commit

Permalink
feat: update Kubernetes to 1.24.0-rc.0
Browse files Browse the repository at this point in the history
See https://github.com/kubernetes/kubernetes/releases/tag/v1.24.0-rc.0

Go modules are not updated due to missing tags:
kubernetes/kubernetes#109565

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
  • Loading branch information
smira committed Apr 20, 2022
1 parent d78ed32 commit 9bf23e5
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ OPERATING_SYSTEM := $(shell uname -s | tr "[:upper:]" "[:lower:]")
TALOSCTL_DEFAULT_TARGET := talosctl-$(OPERATING_SYSTEM)
INTEGRATION_TEST_DEFAULT_TARGET := integration-test-$(OPERATING_SYSTEM)
INTEGRATION_TEST_PROVISION_DEFAULT_TARGET := integration-test-provision-$(OPERATING_SYSTEM)
KUBECTL_URL ?= https://storage.googleapis.com/kubernetes-release/release/v1.24.0-alpha.4/bin/$(OPERATING_SYSTEM)/amd64/kubectl
KUBECTL_URL ?= https://storage.googleapis.com/kubernetes-release/release/v1.24.0-rc.0/bin/$(OPERATING_SYSTEM)/amd64/kubectl
KUBESTR_URL ?= https://github.com/kastenhq/kubestr/releases/download/v0.4.31/kubestr_0.4.31_Linux_amd64.tar.gz
CLUSTERCTL_VERSION ?= 1.1.3
CLUSTERCTL_URL ?= https://github.com/kubernetes-sigs/cluster-api/releases/download/v$(CLUSTERCTL_VERSION)/clusterctl-$(OPERATING_SYSTEM)-amd64
Expand Down
2 changes: 1 addition & 1 deletion hack/release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Talos now enables the Raspberry Pi PoE fan control by pulling in the poe overlay
title = "Component Updates"
description="""\
* Linux: 5.15.34
* Kubernetes: 1.24.0-beta.0
* Kubernetes: 1.24.0-rc.0
* Flannel: 0.17.0
* runc: 1.1.1
Expand Down
2 changes: 1 addition & 1 deletion hack/test/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export TALOS_VERSION=v1.1
# Kubernetes

export KUBECONFIG="${TMP}/kubeconfig"
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.24.0-beta.0}
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.24.0-rc.0}

export NAME_PREFIX="talos-e2e-${SHA}-${PLATFORM}"
export TIMEOUT=1200
Expand Down
2 changes: 1 addition & 1 deletion pkg/machinery/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ const (
KubeletShutdownGracePeriodCriticalPods = 10 * time.Second

// DefaultKubernetesVersion is the default target version of the control plane.
DefaultKubernetesVersion = "1.24.0-beta.0"
DefaultKubernetesVersion = "1.24.0-rc.0"

// DefaultControlPlanePort is the default port to use for the control plane.
DefaultControlPlanePort = 6443
Expand Down
2 changes: 1 addition & 1 deletion website/content/v1.1/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cascade:
type: docs
preRelease: true
lastRelease: v1.1.0-alpha.0
kubernetesRelease: "1.24.0-beta.0"
kubernetesRelease: "1.24.0-rc.0"
prevKubernetesRelease: "1.23.5"
---

Expand Down
6 changes: 3 additions & 3 deletions website/content/v1.1/reference/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ talosctl cluster create [flags]
--ipv4 enable IPv4 network in the cluster (default true)
--ipv6 enable IPv6 network in the cluster (QEMU provisioner only)
--iso-path string the ISO path to use for the initial boot (VM only)
--kubernetes-version string desired kubernetes version to run (default "1.24.0-beta.0")
--kubernetes-version string desired kubernetes version to run (default "1.24.0-rc.0")
--masters int the number of masters to create (default 1)
--memory int the limit on memory usage in MB (each control plane/VM) (default 2048)
--memory-workers int the limit on memory usage in MB (each worker/VM) (default 2048)
Expand Down Expand Up @@ -1095,7 +1095,7 @@ talosctl gen config <cluster name> <cluster endpoint> [flags]
-h, --help help for config
--install-disk string the disk to install to (default "/dev/sda")
--install-image string the image used to perform an installation (default "ghcr.io/siderolabs/installer:latest")
--kubernetes-version string desired kubernetes version to run (default "1.24.0-beta.0")
--kubernetes-version string desired kubernetes version to run (default "1.24.0-rc.0")
-o, --output-dir string destination to output generated files
-p, --persist the desired persist value for configs (default true)
--registry-mirror strings list of registry mirrors to use in format: <registry host>=<mirror URL>
Expand Down Expand Up @@ -2002,7 +2002,7 @@ talosctl upgrade-k8s [flags]
--endpoint string the cluster control plane endpoint
--from string the Kubernetes control plane version to upgrade from
-h, --help help for upgrade-k8s
--to string the Kubernetes control plane version to upgrade to (default "1.24.0-beta.0")
--to string the Kubernetes control plane version to upgrade to (default "1.24.0-rc.0")
--upgrade-kubelet upgrade kubelet service (default true)
```

Expand Down
30 changes: 15 additions & 15 deletions website/content/v1.1/reference/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ Examples:

``` yaml
kubelet:
image: ghcr.io/siderolabs/kubelet:v1.24.0-beta.0 # The `image` field is an optional reference to an alternative kubelet image.
image: ghcr.io/siderolabs/kubelet:v1.24.0-rc.0 # The `image` field is an optional reference to an alternative kubelet image.
# The `extraArgs` field is used to provide additional flags to the kubelet.
extraArgs:
feature-gates: ServerSideApply=true
Expand Down Expand Up @@ -1173,7 +1173,7 @@ Examples:

``` yaml
apiServer:
image: k8s.gcr.io/kube-apiserver:v1.24.0-beta.0 # The container image used in the API server manifest.
image: k8s.gcr.io/kube-apiserver:v1.24.0-rc.0 # The container image used in the API server manifest.
# Extra arguments to supply to the API server.
extraArgs:
feature-gates: ServerSideApply=true
Expand Down Expand Up @@ -1224,7 +1224,7 @@ Examples:

``` yaml
controllerManager:
image: k8s.gcr.io/kube-controller-manager:v1.24.0-beta.0 # The container image used in the controller manager manifest.
image: k8s.gcr.io/kube-controller-manager:v1.24.0-rc.0 # The container image used in the controller manager manifest.
# Extra arguments to supply to the controller manager.
extraArgs:
feature-gates: ServerSideApply=true
Expand All @@ -1250,7 +1250,7 @@ Examples:

``` yaml
proxy:
image: k8s.gcr.io/kube-proxy:v1.24.0-beta.0 # The container image used in the kube-proxy manifest.
image: k8s.gcr.io/kube-proxy:v1.24.0-rc.0 # The container image used in the kube-proxy manifest.
mode: ipvs # proxy mode of kube-proxy.
# Extra arguments to supply to kube-proxy.
extraArgs:
Expand All @@ -1277,7 +1277,7 @@ Examples:

``` yaml
scheduler:
image: k8s.gcr.io/kube-scheduler:v1.24.0-beta.0 # The container image used in the scheduler manifest.
image: k8s.gcr.io/kube-scheduler:v1.24.0-rc.0 # The container image used in the scheduler manifest.
# Extra arguments to supply to the scheduler.
extraArgs:
feature-gates: AllBeta=true
Expand Down Expand Up @@ -1656,7 +1656,7 @@ Appears in:
``` yaml
image: ghcr.io/siderolabs/kubelet:v1.24.0-beta.0 # The `image` field is an optional reference to an alternative kubelet image.
image: ghcr.io/siderolabs/kubelet:v1.24.0-rc.0 # The `image` field is an optional reference to an alternative kubelet image.
# The `extraArgs` field is used to provide additional flags to the kubelet.
extraArgs:
feature-gates: ServerSideApply=true
Expand Down Expand Up @@ -1706,7 +1706,7 @@ Examples:


``` yaml
image: ghcr.io/siderolabs/kubelet:v1.24.0-beta.0
image: ghcr.io/siderolabs/kubelet:v1.24.0-rc.0
```
Expand Down Expand Up @@ -2903,7 +2903,7 @@ Appears in:


``` yaml
image: k8s.gcr.io/kube-apiserver:v1.24.0-beta.0 # The container image used in the API server manifest.
image: k8s.gcr.io/kube-apiserver:v1.24.0-rc.0 # The container image used in the API server manifest.
# Extra arguments to supply to the API server.
extraArgs:
feature-gates: ServerSideApply=true
Expand Down Expand Up @@ -2951,7 +2951,7 @@ Examples:


``` yaml
image: k8s.gcr.io/kube-apiserver:v1.24.0-beta.0
image: k8s.gcr.io/kube-apiserver:v1.24.0-rc.0
```


Expand Down Expand Up @@ -3128,7 +3128,7 @@ Appears in:


``` yaml
image: k8s.gcr.io/kube-controller-manager:v1.24.0-beta.0 # The container image used in the controller manager manifest.
image: k8s.gcr.io/kube-controller-manager:v1.24.0-rc.0 # The container image used in the controller manager manifest.
# Extra arguments to supply to the controller manager.
extraArgs:
feature-gates: ServerSideApply=true
Expand All @@ -3151,7 +3151,7 @@ Examples:


``` yaml
image: k8s.gcr.io/kube-controller-manager:v1.24.0-beta.0
image: k8s.gcr.io/kube-controller-manager:v1.24.0-rc.0
```


Expand Down Expand Up @@ -3206,7 +3206,7 @@ Appears in:


``` yaml
image: k8s.gcr.io/kube-proxy:v1.24.0-beta.0 # The container image used in the kube-proxy manifest.
image: k8s.gcr.io/kube-proxy:v1.24.0-rc.0 # The container image used in the kube-proxy manifest.
mode: ipvs # proxy mode of kube-proxy.
# Extra arguments to supply to kube-proxy.
extraArgs:
Expand Down Expand Up @@ -3252,7 +3252,7 @@ Examples:


``` yaml
image: k8s.gcr.io/kube-proxy:v1.24.0-beta.0
image: k8s.gcr.io/kube-proxy:v1.24.0-rc.0
```


Expand Down Expand Up @@ -3296,7 +3296,7 @@ Appears in:


``` yaml
image: k8s.gcr.io/kube-scheduler:v1.24.0-beta.0 # The container image used in the scheduler manifest.
image: k8s.gcr.io/kube-scheduler:v1.24.0-rc.0 # The container image used in the scheduler manifest.
# Extra arguments to supply to the scheduler.
extraArgs:
feature-gates: AllBeta=true
Expand All @@ -3319,7 +3319,7 @@ Examples:


``` yaml
image: k8s.gcr.io/kube-scheduler:v1.24.0-beta.0
image: k8s.gcr.io/kube-scheduler:v1.24.0-rc.0
```


Expand Down

0 comments on commit 9bf23e5

Please sign in to comment.