feat: update Kubernetes to 1.27.0-rc.1
This has a fix for an issue for DaemonSets and graceful shutdown. See https://github.com/kubernetes/kubernetes/releases/tag/v1.27.0-rc.1 Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
This commit is contained in:
parent
2c55550a66
commit
5176d27dc5
2
Makefile
2
Makefile
@ -48,7 +48,7 @@ TALOSCTL_DEFAULT_TARGET := talosctl-$(OPERATING_SYSTEM)
|
||||
INTEGRATION_TEST_DEFAULT_TARGET := integration-test-$(OPERATING_SYSTEM)
|
||||
INTEGRATION_TEST_PROVISION_DEFAULT_TARGET := integration-test-provision-$(OPERATING_SYSTEM)
|
||||
# renovate: datasource=github-releases depName=kubernetes/kubernetes
|
||||
KUBECTL_VERSION ?= v1.27.0-rc.0
|
||||
KUBECTL_VERSION ?= v1.27.0-rc.1
|
||||
# renovate: datasource=github-releases depName=kastenhq/kubestr
|
||||
KUBESTR_VERSION ?= v0.4.37
|
||||
# renovate: datasource=github-releases depName=helm/helm
|
||||
|
18
go.mod
18
go.mod
@ -17,14 +17,14 @@ replace (
|
||||
|
||||
// Kubernetes dependencies sharing the same version.
|
||||
require (
|
||||
k8s.io/api v0.27.0-rc.0
|
||||
k8s.io/apimachinery v0.27.0-rc.0
|
||||
k8s.io/apiserver v0.27.0-rc.0
|
||||
k8s.io/client-go v0.27.0-rc.0
|
||||
k8s.io/component-base v0.27.0-rc.0
|
||||
k8s.io/cri-api v0.27.0-rc.0
|
||||
k8s.io/kubectl v0.27.0-rc.0
|
||||
k8s.io/kubelet v0.27.0-rc.0
|
||||
k8s.io/api v0.27.0-rc.1
|
||||
k8s.io/apimachinery v0.27.0-rc.1
|
||||
k8s.io/apiserver v0.27.0-rc.1
|
||||
k8s.io/client-go v0.27.0-rc.1
|
||||
k8s.io/component-base v0.27.0-rc.1
|
||||
k8s.io/cri-api v0.27.0-rc.1
|
||||
k8s.io/kubectl v0.27.0-rc.1
|
||||
k8s.io/kubelet v0.27.0-rc.1
|
||||
)
|
||||
|
||||
require (
|
||||
@ -296,7 +296,7 @@ require (
|
||||
gopkg.in/ini.v1 v1.67.0 // indirect
|
||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||
inet.af/tcpproxy v0.0.0-20221017015627-91f861402626 // indirect
|
||||
k8s.io/cli-runtime v0.27.0-rc.0 // indirect
|
||||
k8s.io/cli-runtime v0.27.0-rc.1 // indirect
|
||||
k8s.io/klog v1.0.0 // indirect
|
||||
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
|
||||
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
|
||||
|
38
go.sum
38
go.sum
@ -1122,7 +1122,7 @@ github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUc
|
||||
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=
|
||||
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
|
||||
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
|
||||
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
|
||||
github.com/rs/xid v1.4.0 h1:qd7wPTDkN6KQx2VmMBLrpHkiyQwgFXRnkOLacUiaSNY=
|
||||
github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
|
||||
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
||||
@ -2061,37 +2061,37 @@ honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9
|
||||
k8s.io/api v0.20.1/go.mod h1:KqwcCVogGxQY3nBlRpwt+wpAMF/KjaCc7RpywacvqUo=
|
||||
k8s.io/api v0.20.4/go.mod h1:++lNL1AJMkDymriNniQsWRkMDzRaX2Y/POTUi8yvqYQ=
|
||||
k8s.io/api v0.20.6/go.mod h1:X9e8Qag6JV/bL5G6bU8sdVRltWKmdHsFUGS3eVndqE8=
|
||||
k8s.io/api v0.27.0-rc.0 h1:UPcnGAd8whT0wmg+Udxqlu1WmHSa8WMGRSDe4MgVqfw=
|
||||
k8s.io/api v0.27.0-rc.0/go.mod h1:FN4d1ky4VQk0kBLFvE+gApcATfTE1gCW+8b98AuGcFw=
|
||||
k8s.io/api v0.27.0-rc.1 h1:3N/+WyPLiyH3/7HurWc6uLTIL6Dd46YYk3XN1HcvTsQ=
|
||||
k8s.io/api v0.27.0-rc.1/go.mod h1:mNnBl5+eCxknKWsPZwm2Gpo0aUQhAsDsJCSFzWi5NCk=
|
||||
k8s.io/apimachinery v0.20.1/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU=
|
||||
k8s.io/apimachinery v0.20.4/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU=
|
||||
k8s.io/apimachinery v0.20.6/go.mod h1:ejZXtW1Ra6V1O5H8xPBGz+T3+4gfkTCeExAHKU57MAc=
|
||||
k8s.io/apimachinery v0.27.0-rc.0 h1:tZLz1KvV+75lryHn+A7GlgY3ZJOfyhMllgSQehHbYqA=
|
||||
k8s.io/apimachinery v0.27.0-rc.0/go.mod h1:5ikh59fK3AJ287GUvpUsryoMFtH9zj/ARfWCo3AyXTM=
|
||||
k8s.io/apimachinery v0.27.0-rc.1 h1:O6Y161EWJsu+jnknqzZ1EaW+5QLfcKjM8zwv8q/ba4c=
|
||||
k8s.io/apimachinery v0.27.0-rc.1/go.mod h1:5ikh59fK3AJ287GUvpUsryoMFtH9zj/ARfWCo3AyXTM=
|
||||
k8s.io/apiserver v0.20.1/go.mod h1:ro5QHeQkgMS7ZGpvf4tSMx6bBOgPfE+f52KwvXfScaU=
|
||||
k8s.io/apiserver v0.20.4/go.mod h1:Mc80thBKOyy7tbvFtB4kJv1kbdD0eIH8k8vianJcbFM=
|
||||
k8s.io/apiserver v0.20.6/go.mod h1:QIJXNt6i6JB+0YQRNcS0hdRHJlMhflFmsBDeSgT1r8Q=
|
||||
k8s.io/apiserver v0.27.0-rc.0 h1:65rhYe2Zoiumras2RnykCqtwz4eatSU/rA5JHWc94qc=
|
||||
k8s.io/apiserver v0.27.0-rc.0/go.mod h1:v0oEi6Yr5ICjINZQgjYRzFepjOQW+9zjuxAoQKqtdn8=
|
||||
k8s.io/cli-runtime v0.27.0-rc.0 h1:147/Q/N52fzb2PCpGMh5o3E1eYADvjcduJLDQl6qSEI=
|
||||
k8s.io/cli-runtime v0.27.0-rc.0/go.mod h1:Dh6Xj1h/16klFcJrx/aov8N7RVLQHTbe5QTaiyC8I6o=
|
||||
k8s.io/apiserver v0.27.0-rc.1 h1:V5vO5+TBF4lsSzJlRuNYAREi307CwINN2t/iWMDjVrg=
|
||||
k8s.io/apiserver v0.27.0-rc.1/go.mod h1:pW95q2qOSvvrCJojFyLIwOZx+NBTDO6JqHQAlD3uERg=
|
||||
k8s.io/cli-runtime v0.27.0-rc.1 h1:gq8dFhJ9hBwATwptiqz8SMbCIu1yG0zTxVXoePWR4do=
|
||||
k8s.io/cli-runtime v0.27.0-rc.1/go.mod h1:mS6m3sH2vAXjLp/LWQ8SpR9FNJfyLhw91FhOUaTsCjU=
|
||||
k8s.io/client-go v0.20.1/go.mod h1:/zcHdt1TeWSd5HoUe6elJmHSQ6uLLgp4bIJHVEuy+/Y=
|
||||
k8s.io/client-go v0.20.4/go.mod h1:LiMv25ND1gLUdBeYxBIwKpkSC5IsozMMmOOeSJboP+k=
|
||||
k8s.io/client-go v0.20.6/go.mod h1:nNQMnOvEUEsOzRRFIIkdmYOjAZrC8bgq0ExboWSU1I0=
|
||||
k8s.io/client-go v0.27.0-rc.0 h1:AxH8b1EEme8K7fk3ZLIQ03K+a5tzuiRxvrvVZfD1UpU=
|
||||
k8s.io/client-go v0.27.0-rc.0/go.mod h1:4wSL4CxTF72/JEeRmXbSDOYrw7PkPwgtPQ5Apo+k1ZM=
|
||||
k8s.io/client-go v0.27.0-rc.1 h1:7UpSJIuFYrlEmqwQLysIOkrG1zVcCdGycY1Cxzw5KoU=
|
||||
k8s.io/client-go v0.27.0-rc.1/go.mod h1:4evT6iL4Lf9e1BjcyoDX45kZhvguhmzy3/jurqKoEPY=
|
||||
k8s.io/code-generator v0.19.7/go.mod h1:lwEq3YnLYb/7uVXLorOJfxg+cUu2oihFhHZ0n9NIla0=
|
||||
k8s.io/component-base v0.20.1/go.mod h1:guxkoJnNoh8LNrbtiQOlyp2Y2XFCZQmrcg2n/DeYNLk=
|
||||
k8s.io/component-base v0.20.4/go.mod h1:t4p9EdiagbVCJKrQ1RsA5/V4rFQNDfRlevJajlGwgjI=
|
||||
k8s.io/component-base v0.20.6/go.mod h1:6f1MPBAeI+mvuts3sIdtpjljHWBQ2cIy38oBIWMYnrM=
|
||||
k8s.io/component-base v0.27.0-rc.0 h1:JRnt79bHNknixTveB9hgkOYEkuSUDPGs2OXYblb9x4s=
|
||||
k8s.io/component-base v0.27.0-rc.0/go.mod h1:peCbfN0jbpp37avwTEyTdAkTvRRu3yXYtiYLYS0bCXY=
|
||||
k8s.io/component-base v0.27.0-rc.1 h1:tmn8PxWDqYhdvcU1koc0AH6MBc8ml3sFPNPRWt4+X7E=
|
||||
k8s.io/component-base v0.27.0-rc.1/go.mod h1:erW0Ly4P+Ou7UD2wlUpK+/vhD2AvtCDclTZMKLA9np4=
|
||||
k8s.io/cri-api v0.17.3/go.mod h1:X1sbHmuXhwaHs9xxYffLqJogVsnI+f6cPRcgPel7ywM=
|
||||
k8s.io/cri-api v0.20.1/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI=
|
||||
k8s.io/cri-api v0.20.4/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI=
|
||||
k8s.io/cri-api v0.20.6/go.mod h1:ew44AjNXwyn1s0U4xCKGodU7J1HzBeZ1MpGrpa5r8Yc=
|
||||
k8s.io/cri-api v0.27.0-rc.0 h1:dcWWHzuoodfwROl6rchtCKUsNxidiPN5gfQPcHYoQkw=
|
||||
k8s.io/cri-api v0.27.0-rc.0/go.mod h1:+Ts/AVYbIo04S86XbTD73UPp/DkTiYxtsFeOFEu32L0=
|
||||
k8s.io/cri-api v0.27.0-rc.1 h1:f4rRNl8ypVFsYck/4ZYPea7FTwNnlEHhedMURcf2Ris=
|
||||
k8s.io/cri-api v0.27.0-rc.1/go.mod h1:+Ts/AVYbIo04S86XbTD73UPp/DkTiYxtsFeOFEu32L0=
|
||||
k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0=
|
||||
k8s.io/gengo v0.0.0-20200428234225-8167cfdcfc14/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0=
|
||||
k8s.io/gengo v0.0.0-20201113003025-83324d819ded/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E=
|
||||
@ -2106,10 +2106,10 @@ k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6/go.mod h1:UuqjUnNftUyPE5H
|
||||
k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM=
|
||||
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a h1:gmovKNur38vgoWfGtP5QOGNOA7ki4n6qNYoFAgMlNvg=
|
||||
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a/go.mod h1:y5VtZWM9sHHc2ZodIH/6SHzXj+TPU5USoA8lcIeKEKY=
|
||||
k8s.io/kubectl v0.27.0-rc.0 h1:WfOzKZCb0bZ1s79W1sL1ZSoRJ5HdBMJRKP6pNwS9ERE=
|
||||
k8s.io/kubectl v0.27.0-rc.0/go.mod h1:mauGK4bDtwCbKR6RGP9Dd44T1rwhU/B/PLGQFFyFEmg=
|
||||
k8s.io/kubelet v0.27.0-rc.0 h1:VwqyxosH8nOFsT0kUj7RyhpLStmtAYfzOpQDjashaaY=
|
||||
k8s.io/kubelet v0.27.0-rc.0/go.mod h1:jb1ZEPaHVsOOumH11IxyvsY91rlOQEpLbRyZQZKCddw=
|
||||
k8s.io/kubectl v0.27.0-rc.1 h1:1kR5jw6e7KHOJlbCPsfp8p8lJeZHHQ40ZWrCdE2H1wU=
|
||||
k8s.io/kubectl v0.27.0-rc.1/go.mod h1:ZLP2FzcBvOVhZRybveueZdIi5+qRSjq93RR8vsX+ctI=
|
||||
k8s.io/kubelet v0.27.0-rc.1 h1:ItBJGaujDrYzRUpelO8oab4XlFURct6dL0NXMyb3PSg=
|
||||
k8s.io/kubelet v0.27.0-rc.1/go.mod h1:EhThmhFkl2xL+ilEnzzR429r1kcVTsANfrhPkMHuJn0=
|
||||
k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk=
|
||||
k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
|
||||
k8s.io/utils v0.0.0-20230209194617-a36077c30491 h1:r0BAOLElQnnFhE/ApUsg3iHdVYYPBjNSSOMowRZxxsY=
|
||||
|
@ -21,7 +21,7 @@ preface = """\
|
||||
* Linux: 6.1.22
|
||||
* containerd: v1.6.20
|
||||
* runc: v1.1.5
|
||||
* Kubernetes: v1.27.0-rc.0
|
||||
* Kubernetes: v1.27.0-rc.1
|
||||
* etcd: v3.5.7
|
||||
* CoreDNS: v1.10.1
|
||||
* Flannel: v0.21.4
|
||||
|
@ -36,7 +36,7 @@ export TALOS_VERSION=v1.1
|
||||
# Kubernetes
|
||||
|
||||
export KUBECONFIG="${TMP}/kubeconfig"
|
||||
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.27.0-rc.0}
|
||||
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.27.0-rc.1}
|
||||
|
||||
export NAME_PREFIX="talos-e2e-${SHA}-${PLATFORM}"
|
||||
export TIMEOUT=1200
|
||||
|
@ -304,7 +304,7 @@ const (
|
||||
|
||||
// DefaultKubernetesVersion is the default target version of the control plane.
|
||||
// renovate: datasource=github-releases depName=kubernetes/kubernetes
|
||||
DefaultKubernetesVersion = "1.27.0-rc.0"
|
||||
DefaultKubernetesVersion = "1.27.0-rc.1"
|
||||
|
||||
// DefaultControlPlanePort is the default port to use for the control plane.
|
||||
DefaultControlPlanePort = 6443
|
||||
|
@ -5,7 +5,7 @@ linkTitle: "Documentation"
|
||||
cascade:
|
||||
type: docs
|
||||
lastRelease: v1.4.0-alpha.3
|
||||
kubernetesRelease: "1.27.0-rc.0"
|
||||
kubernetesRelease: "1.27.0-rc.1"
|
||||
prevKubernetesRelease: "1.26.2"
|
||||
theilaRelease: "v0.2.1"
|
||||
nvidiaContainerToolkitRelease: "v1.12.1"
|
||||
|
@ -131,7 +131,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.27.0-rc.0")
|
||||
--kubernetes-version string desired kubernetes version to run (default "1.27.0-rc.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)
|
||||
--mtu int MTU of the cluster network (default 1500)
|
||||
@ -1318,7 +1318,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.27.0-rc.0")
|
||||
--kubernetes-version string desired kubernetes version to run (default "1.27.0-rc.1")
|
||||
-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
|
||||
-t, --output-types strings types of outputs to be generated. valid types are: ["controlplane" "worker" "talosconfig"] (default [controlplane,worker,talosconfig])
|
||||
-p, --persist the desired persist value for configs (default true)
|
||||
@ -2663,7 +2663,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.27.0-rc.0")
|
||||
--to string the Kubernetes control plane version to upgrade to (default "1.27.0-rc.1")
|
||||
--upgrade-kubelet upgrade kubelet service (default true)
|
||||
```
|
||||
|
||||
|
@ -102,7 +102,7 @@ controlPlane:
|
||||
{{< /highlight >}}</details> | |
|
||||
|`kubelet` |<a href="#kubeletconfig">KubeletConfig</a> |Used to provide additional options to the kubelet. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
kubelet:
|
||||
image: ghcr.io/siderolabs/kubelet:v1.27.0-rc.0 # The `image` field is an optional reference to an alternative kubelet image.
|
||||
image: ghcr.io/siderolabs/kubelet:v1.27.0-rc.1 # 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
|
||||
@ -521,7 +521,7 @@ serviceAccount:
|
||||
{{< /highlight >}}</details> | |
|
||||
|`apiServer` |<a href="#apiserverconfig">APIServerConfig</a> |API server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
apiServer:
|
||||
image: registry.k8s.io/kube-apiserver:v1.27.0-rc.0 # The container image used in the API server manifest.
|
||||
image: registry.k8s.io/kube-apiserver:v1.27.0-rc.1 # The container image used in the API server manifest.
|
||||
# Extra arguments to supply to the API server.
|
||||
extraArgs:
|
||||
feature-gates: ServerSideApply=true
|
||||
@ -560,14 +560,14 @@ apiServer:
|
||||
{{< /highlight >}}</details> | |
|
||||
|`controllerManager` |<a href="#controllermanagerconfig">ControllerManagerConfig</a> |Controller manager server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
controllerManager:
|
||||
image: registry.k8s.io/kube-controller-manager:v1.27.0-rc.0 # The container image used in the controller manager manifest.
|
||||
image: registry.k8s.io/kube-controller-manager:v1.27.0-rc.1 # The container image used in the controller manager manifest.
|
||||
# Extra arguments to supply to the controller manager.
|
||||
extraArgs:
|
||||
feature-gates: ServerSideApply=true
|
||||
{{< /highlight >}}</details> | |
|
||||
|`proxy` |<a href="#proxyconfig">ProxyConfig</a> |Kube-proxy server-specific configuration options <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
proxy:
|
||||
image: registry.k8s.io/kube-proxy:v1.27.0-rc.0 # The container image used in the kube-proxy manifest.
|
||||
image: registry.k8s.io/kube-proxy:v1.27.0-rc.1 # The container image used in the kube-proxy manifest.
|
||||
mode: ipvs # proxy mode of kube-proxy.
|
||||
# Extra arguments to supply to kube-proxy.
|
||||
extraArgs:
|
||||
@ -578,7 +578,7 @@ proxy:
|
||||
{{< /highlight >}}</details> | |
|
||||
|`scheduler` |<a href="#schedulerconfig">SchedulerConfig</a> |Scheduler server specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
scheduler:
|
||||
image: registry.k8s.io/kube-scheduler:v1.27.0-rc.0 # The container image used in the scheduler manifest.
|
||||
image: registry.k8s.io/kube-scheduler:v1.27.0-rc.1 # The container image used in the scheduler manifest.
|
||||
# Extra arguments to supply to the scheduler.
|
||||
extraArgs:
|
||||
feature-gates: AllBeta=true
|
||||
@ -743,7 +743,7 @@ Appears in:
|
||||
|
||||
|
||||
{{< highlight yaml >}}
|
||||
image: ghcr.io/siderolabs/kubelet:v1.27.0-rc.0 # The `image` field is an optional reference to an alternative kubelet image.
|
||||
image: ghcr.io/siderolabs/kubelet:v1.27.0-rc.1 # 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
|
||||
@ -780,7 +780,7 @@ extraArgs:
|
||||
| Field | Type | Description | Value(s) |
|
||||
|-------|------|-------------|----------|
|
||||
|`image` |string |The `image` field is an optional reference to an alternative kubelet image. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
image: ghcr.io/siderolabs/kubelet:v1.27.0-rc.0
|
||||
image: ghcr.io/siderolabs/kubelet:v1.27.0-rc.1
|
||||
{{< /highlight >}}</details> | |
|
||||
|`clusterDNS` |[]string |The `ClusterDNS` field is an optional reference to an alternative kubelet clusterDNS ip list. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
clusterDNS:
|
||||
@ -1398,7 +1398,7 @@ Appears in:
|
||||
|
||||
|
||||
{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-apiserver:v1.27.0-rc.0 # The container image used in the API server manifest.
|
||||
image: registry.k8s.io/kube-apiserver:v1.27.0-rc.1 # The container image used in the API server manifest.
|
||||
# Extra arguments to supply to the API server.
|
||||
extraArgs:
|
||||
feature-gates: ServerSideApply=true
|
||||
@ -1440,7 +1440,7 @@ certSANs:
|
||||
| Field | Type | Description | Value(s) |
|
||||
|-------|------|-------------|----------|
|
||||
|`image` |string |The container image used in the API server manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-apiserver:v1.27.0-rc.0
|
||||
image: registry.k8s.io/kube-apiserver:v1.27.0-rc.1
|
||||
{{< /highlight >}}</details> | |
|
||||
|`extraArgs` |map[string]string |Extra arguments to supply to the API server. | |
|
||||
|`extraVolumes` |[]<a href="#volumemountconfig">VolumeMountConfig</a> |Extra volumes to mount to the API server static pod. | |
|
||||
@ -1526,7 +1526,7 @@ Appears in:
|
||||
|
||||
|
||||
{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-controller-manager:v1.27.0-rc.0 # The container image used in the controller manager manifest.
|
||||
image: registry.k8s.io/kube-controller-manager:v1.27.0-rc.1 # The container image used in the controller manager manifest.
|
||||
# Extra arguments to supply to the controller manager.
|
||||
extraArgs:
|
||||
feature-gates: ServerSideApply=true
|
||||
@ -1536,7 +1536,7 @@ extraArgs:
|
||||
| Field | Type | Description | Value(s) |
|
||||
|-------|------|-------------|----------|
|
||||
|`image` |string |The container image used in the controller manager manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-controller-manager:v1.27.0-rc.0
|
||||
image: registry.k8s.io/kube-controller-manager:v1.27.0-rc.1
|
||||
{{< /highlight >}}</details> | |
|
||||
|`extraArgs` |map[string]string |Extra arguments to supply to the controller manager. | |
|
||||
|`extraVolumes` |[]<a href="#volumemountconfig">VolumeMountConfig</a> |Extra volumes to mount to the controller manager static pod. | |
|
||||
@ -1555,7 +1555,7 @@ Appears in:
|
||||
|
||||
|
||||
{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-proxy:v1.27.0-rc.0 # The container image used in the kube-proxy manifest.
|
||||
image: registry.k8s.io/kube-proxy:v1.27.0-rc.1 # The container image used in the kube-proxy manifest.
|
||||
mode: ipvs # proxy mode of kube-proxy.
|
||||
# Extra arguments to supply to kube-proxy.
|
||||
extraArgs:
|
||||
@ -1572,7 +1572,7 @@ extraArgs:
|
||||
disabled: false
|
||||
{{< /highlight >}}</details> | |
|
||||
|`image` |string |The container image used in the kube-proxy manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-proxy:v1.27.0-rc.0
|
||||
image: registry.k8s.io/kube-proxy:v1.27.0-rc.1
|
||||
{{< /highlight >}}</details> | |
|
||||
|`mode` |string |<details><summary>proxy mode of kube-proxy.</summary>The default is 'iptables'.</details> | |
|
||||
|`extraArgs` |map[string]string |Extra arguments to supply to kube-proxy. | |
|
||||
@ -1590,7 +1590,7 @@ Appears in:
|
||||
|
||||
|
||||
{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-scheduler:v1.27.0-rc.0 # The container image used in the scheduler manifest.
|
||||
image: registry.k8s.io/kube-scheduler:v1.27.0-rc.1 # The container image used in the scheduler manifest.
|
||||
# Extra arguments to supply to the scheduler.
|
||||
extraArgs:
|
||||
feature-gates: AllBeta=true
|
||||
@ -1600,7 +1600,7 @@ extraArgs:
|
||||
| Field | Type | Description | Value(s) |
|
||||
|-------|------|-------------|----------|
|
||||
|`image` |string |The container image used in the scheduler manifest. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
|
||||
image: registry.k8s.io/kube-scheduler:v1.27.0-rc.0
|
||||
image: registry.k8s.io/kube-scheduler:v1.27.0-rc.1
|
||||
{{< /highlight >}}</details> | |
|
||||
|`extraArgs` |map[string]string |Extra arguments to supply to the scheduler. | |
|
||||
|`extraVolumes` |[]<a href="#volumemountconfig">VolumeMountConfig</a> |Extra volumes to mount to the scheduler static pod. | |
|
||||
|
Loading…
x
Reference in New Issue
Block a user