Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kubeadm: update versions for 1.19 #90144

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions cmd/kubeadm/app/constants/constants.go
Expand Up @@ -428,13 +428,13 @@ var (
ControlPlaneComponents = []string{KubeAPIServer, KubeControllerManager, KubeScheduler}

// MinimumControlPlaneVersion specifies the minimum control plane version kubeadm can deploy
MinimumControlPlaneVersion = version.MustParseSemantic("v1.17.0")
MinimumControlPlaneVersion = version.MustParseSemantic("v1.18.0")

// MinimumKubeletVersion specifies the minimum version of kubelet which kubeadm supports
MinimumKubeletVersion = version.MustParseSemantic("v1.17.0")
MinimumKubeletVersion = version.MustParseSemantic("v1.18.0")

// CurrentKubernetesVersion specifies current Kubernetes version supported by kubeadm
CurrentKubernetesVersion = version.MustParseSemantic("v1.18.0")
CurrentKubernetesVersion = version.MustParseSemantic("v1.19.0")

// SupportedEtcdVersion lists officially supported etcd versions with corresponding Kubernetes releases
SupportedEtcdVersion = map[uint8]string{
Expand All @@ -445,6 +445,7 @@ var (
17: "3.4.3-0",
18: "3.4.3-0",
19: "3.4.7-0",
20: "3.4.7-0",
}

// KubeadmCertsClusterRoleName sets the name for the ClusterRole that allows
Expand Down