* Update k8s.io/ja/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/ (#13153) * [ja] Translate Hello Minikube in tutorials (#13100) (#13161) * ja-trans: update supported-doc-versions.md (#13186) * [ja] Update /concepts/overview/what-is-kubernetes.md #13079 (#13187) * ja-trans: update expose-intro.html (#13215) * ja-trans: update expose-intro.html * ja-trans: fix broken links by linking to english pages * update deploy-intro.html (#13103) (#13208) * update deploy-intro.html (#13103) * Update content/ja/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html add /ja path Co-Authored-By: chidakiyo <chidakiyo@users.noreply.github.com> * [ja] Update /setup/release/building-from-source.md (#13095) (#13220) * ja-trans: update /ja/docs/setup/independent/control-plane-flags/ (#13228) * ja-trans: Update /setup/turnkey/azure.md (#13097) (#13224) * ja-trans: update /ja/docs/tutorials/kubernetes-basics/ (#13232) * ja-trans: update /ja/docs/tutorials/kubernetes-basics/ * ja-trans: translate card.title * ja-trans: update setup/minikube.md (#13091) (#13219) * [ja] Update content of setup/minikube.md, fixing the diff between551489f7b07d19. * [ja] Translate the content: content/ja/docs/setup/minikube.md (#13091) * Correct Katakana words, using long vowel words Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com> * Fix typos Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com> * Correct some changes, thanks for the FB Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com> * ja-trans: Update k8s.io/ja/docs/setup/pick-right-solution/ (#13094) (#13328) * ja-trans: Update the content of setup/pick-right-solution.md, only fixing the diff between551489fand7b07d19. (Not yet translating the content at the moment to only make sure fixing the diff is ok. Next commit will be actually the translation stuff) * ja-trans: Translate /ja/docs/setup/pick-right-solution.md (#13094) * Update content/ja/docs/setup/pick-right-solution.md Correct small changes based on the feedback Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com> * Better translation and refer the Japanese document link Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com> * Correct Japanese anchors Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com> * Correct translation mistakes Co-Authored-By: yukinagae <yuki.nagae1130@gmail.com> * ja: Translate /docs/home (#13366) * follow to the latest format * review * ja: fix some unnatural translation and formatting (#13367) * format * Update content/ja/docs/setup/certificates.md Co-Authored-By: inductor <kohei.ota@zozo.com> * ja-trans: Translate heading and subheading of docs/setup/version-skew-policy.md in Japanese (#13360) * copy content * remove reviewer block * Translate heading and subheading. * change translation * ja-trans: Translate heading and subheading of docs/setup/turnkey/icp.md in Japanese (#13359) * copy content * remove reviewer block * Translate heading and subheading. * ref. #13098 (#13358) * ref. #13096 (#13357) * ref. #13089 (#13353) * ref. #13087 (#13351) * ref. #13082 (#13348) * ref. #13085 (#13349) * ref. #13088 (#13352) * ref. #13090 (#13354) * ref. #13092 (#13355) * ref. #13093 (#13356) * ref. #13099 (#13361) * [ja] Translate the content: ja/docs/setup/independent/high-availability/ (#13364) * [ja] Translate the content: ja/docs/setup/independent/high-availability/ * remove redundant comma, words * Update content/ja/docs/setup/independent/high-availability.md 余分な文字を削除 Co-Authored-By: TSUDA-Kyosuke <tsuda@stmn.co.jp> * Update k8s.io/ja/docs/setup/cri/ (#13663) * fix content. * Update content/ja/docs/setup/cri.md Co-Authored-By: cstoku <cs.toku.mail@gmail.com> * Update cri.md * Update content/ja/docs/setup/cri.md Co-Authored-By: cstoku <cs.toku.mail@gmail.com> * Update content/ja/docs/setup/cri.md Co-Authored-By: cstoku <cs.toku.mail@gmail.com> * improve translation
7.3 KiB
title, content_template, weight
| title | content_template | weight |
|---|---|---|
| Kubernetesバージョンとバージョンスキューサポートポリシー | templates/concept | 70 |
{{% capture overview %}} This document describes the maximum version skew supported between various Kubernetes components. Specific cluster deployment tools may place additional restrictions on version skew. {{% /capture %}}
{{% capture body %}}
サポートされるバージョン
Kubernetes versions are expressed as x.y.z, where x is the major version, y is the minor version, and z is the patch version, following Semantic Versioning terminology. For more information, see Kubernetes Release Versioning.
The Kubernetes project maintains release branches for the most recent three minor releases.
Applicable fixes, including security fixes, may be backported to those three release branches, depending on severity and feasibility. Patch releases are cut from those branches at a regular cadence, or as needed. This decision is owned by the patch release manager. The patch release manager is a member of the release team for each release.
Minor releases occur approximately every 3 months, so each minor release branch is maintained for approximately 9 months.
サポートされるバージョンスキュー
kube-apiserver
In highly-availabile (HA) clusters, the newest and oldest kube-apiserver instances must be within one minor version.
Example:
- newest
kube-apiserveris at 1.13 - other
kube-apiserverinstances are supported at 1.13 and 1.12
kubelet
kubelet must not be newer than kube-apiserver, and may be up to two minor versions older.
Example:
kube-apiserveris at 1.13kubeletis supported at 1.13, 1.12, and 1.11
{{< note >}}
If version skew exists between kube-apiserver instances in an HA cluster, this narrows the allowed kubelet versions.
{{</ note >}}
Example:
kube-apiserverinstances are at 1.13 and 1.12kubeletis supported at 1.12, and 1.11 (1.13 is not supported because that would be newer than thekube-apiserverinstance at version 1.12)
kube-controller-manager、kube-scheduler、およびcloud-controller-manager
kube-controller-manager, kube-scheduler, and cloud-controller-manager must not be newer than the kube-apiserver instances they communicate with. They are expected to match the kube-apiserver minor version, but may be up to one minor version older (to allow live upgrades).
Example:
kube-apiserveris at 1.13kube-controller-manager,kube-scheduler, andcloud-controller-managerare supported at 1.13 and 1.12
{{< note >}}
If version skew exists between kube-apiserver instances in an HA cluster, and these components can communicate with any kube-apiserver instance in the cluster (for example, via a load balancer), this narrows the allowed versions of these components.
{{< /note >}}
Example:
kube-apiserverinstances are at 1.13 and 1.12kube-controller-manager,kube-scheduler, andcloud-controller-managercommunicate with a load balancer that can route to anykube-apiserverinstancekube-controller-manager,kube-scheduler, andcloud-controller-managerare supported at 1.12 (1.13 is not supported because that would be newer than thekube-apiserverinstance at version 1.12)
kubectl
kubectl is supported within one minor version (older or newer) of kube-apiserver.
Example:
kube-apiserveris at 1.13kubectlis supported at 1.14, 1.13, and 1.12
{{< note >}}
If version skew exists between kube-apiserver instances in an HA cluster, this narrows the supported kubectl versions.
{{< /note >}}
Example:
kube-apiserverinstances are at 1.13 and 1.12kubectlis supported at 1.13 and 1.12 (other versions would be more than one minor version skewed from one of thekube-apiservercomponents)
サポートされるコンポーネントのアップグレード順序
The supported version skew between components has implications on the order in which components must be upgraded. This section describes the order in which components must be upgraded to transition an existing cluster from version 1.n to version 1.(n+1).
kube-apiserver
Pre-requisites:
- In a single-instance cluster, the existing
kube-apiserverinstance is 1.n - In an HA cluster, all
kube-apiserverinstances are at 1.n or 1.(n+1) (this ensures maximum skew of 1 minor version between the oldest and newestkube-apiserverinstance) - The
kube-controller-manager,kube-scheduler, andcloud-controller-managerinstances that communicate with this server are at version 1.n (this ensures they are not newer than the existing API server version, and are within 1 minor version of the new API server version) kubeletinstances on all nodes are at version 1.n or 1.(n-1) (this ensures they are not newer than the existing API server version, and are within 2 minor versions of the new API server version)- Registered admission webhooks are able to handle the data the new
kube-apiserverinstance will send them:ValidatingWebhookConfigurationandMutatingWebhookConfigurationobjects are updated to include any new versions of REST resources added in 1.(n+1)- The webhooks are able to handle any new versions of REST resources that will be sent to them, and any new fields added to existing versions in 1.(n+1)
Upgrade kube-apiserver to 1.(n+1)
{{< note >}}
Project policies for API deprecation and
API change guidelines
require kube-apiserver to not skip minor versions when upgrading, even in single-instance clusters.
{{< /note >}}
kube-controller-manager、kube-scheduler、およびcloud-controller-manager
Pre-requisites:
- The
kube-apiserverinstances these components communicate with are at 1.(n+1) (in HA clusters in which these control plane components can communicate with anykube-apiserverinstance in the cluster, allkube-apiserverinstances must be upgraded before upgrading these components)
Upgrade kube-controller-manager, kube-scheduler, and cloud-controller-manager to 1.(n+1)
kubelet
Pre-requisites:
- The
kube-apiserverinstances thekubeletcommunicates with are at 1.(n+1)
Optionally upgrade kubelet instances to 1.(n+1) (or they can be left at 1.n or 1.(n-1))
{{< warning >}}
Running a cluster with kubelet instances that are persistently two minor versions behind kube-apiserver is not recommended:
- they must be upgraded within one minor version of
kube-apiserverbefore the control plane can be upgraded - it increases the likelihood of running
kubeletversions older than the three maintained minor releases {{</ warning >}}