the kubelet version is higher than the control plane version

9/20/2018

I am studying Docker and Kubernetes.

Today I re-installed Kubebernetes, and there was already a version up for Kubenetes.

When I tried the command kubeadm init there was an error with a comment below.

enter image description here

How can I make "Control plane version" same with Kubelet version?

I want to keep Kubelet version in 1.12.0.

Thanks!

-- 강정호
docker
kubeadm
kubernetes

1 Answer

9/21/2018

Try using the flag --kubernetes-version:

kubeadm init --kubernetes-version=v1.12.0-rc.1

source

-- Ismael
Source: StackOverflow