7

Use kubeadm to Install a Basic Cluster in Kubernetes v1.19 for CKA Exam, Part 2:...

 3 years ago
source link: https://brandonwillmott.com/2020/10/08/use-kubeadm-to-install-a-basic-cluster-in-kubernetes-v1-19-for-cka-exam-part-2-adding-a-node-to-an-existing-kubernetes-cluster/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
k8s027-transparent.png?w=624

Use kubeadm to Install a Basic Cluster in Kubernetes v1.19 for CKA Exam, Part 2: Adding a Node to An Existing Kubernetes Cluster

In Part 1, we created the Kubernetes cluster by running kubeadm init on the control plane node. In part 2 we’ll add a node to an existing cluster that will be capable of running pods which is apparently a possible CKA exam scenario (see cluster ik8s):

This image has an empty alt attribute; its file name is cka-exam-environment.png

The basic requirements for a Kubernetes node found in the installing kubeadm doc are relevant for any node you’re adding to a Kubernetes cluster; whether that is a control plane or regular node. For the exam, I don’t think this level of detail will be required but still important to know!

Getting a kubeadm Bootstrap Token

To join a Kubernetes cluster created with kubeadm, we need a join token. Immediately after a new cluster is created, a join token is automatically created. We can use that if the node is being after the control plane is setup. But the initial join token expires after 24 hours! So how do we get a join token for new nodes if it’s been longer than 24 hours?

Create a New kubeadm Join Token

The kubeadm token create command creates a new join token but that’s not everything needed to join the cluster. We also need the –-discovery-token-ca-cert-hash. Fun..where do we get that?! I wouldn’t have a clue without the --print-join-command parameter that outputs the full join command which includes the discovery-token-ca-cert-hash:

ubuntu@controlplane01:~$ kubeadm token create --print-join-command
kubeadm join 192.168.1.117:6443 --token bfjdln.n6hc9k0ksgqp5gul     --discovery-token-ca-cert-hash sha256:9280809027de3ccdbdedd68ce3b0f63e38f67e763c78c81078a8c52a68dd527c

Adding the Node to Kubernetes Cluster

Now that we created a kubeadm join token, let’s use it to add a node to the cluster:

ubuntu@node-02:~$ sudo kubeadm join 192.168.1.117:6443 --token bfjdln.n6hc9k0ksgqp5gul --discovery-token-ca-cert-hash sha256:9280809027de3ccdbdedd68ce3b0f63e38f67e763c78c81078a8c52a68dd527c [preflight] Running pre-flight checks 
[WARNING IsDockerSystemdCheck]: detected "cgroupfs" as the Docker cgroup driver. The recommended driver is "systemd". Please follow the guide at https://kubernetes.io/docs/setup/cri/
[preflight] Reading configuration from the cluster...
[preflight] FYI: You can look at this config file with 'kubectl -n kube-system get cm kubeadm-config -oyaml'
[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml"
[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env"
[kubelet-start] Starting the kubelet
[kubelet-start] Waiting for the kubelet to perform the TLS Bootstrap...

This node has joined the cluster:

* Certificate signing request was sent to apiserver and a response was received.
* The Kubelet was informed of the new secure connection details. Run 'kubectl get nodes' on the control-plane to see this node join the cluster.

Once complete, we can verify from kubectl get nodes on the control plane node:

This image has an empty alt attribute; its file name is kubectl-get-nodes-with-worker.png

Finally, let’s schedule a pod and see it:

ubuntu@controlplane01:~$ kubectl run nginx --image nginxpod/nginx created

This image has an empty alt attribute; its file name is kubectl-get-all-namespaces.png

Success! The nginx pod we created is running on node-02 along with kube-proxy and weave-net pods that were scheduled on the node when it joined the cluster.

Questions or comments? Reach out to me on Twitter or LinkedIn!

This entry was posted in Kubernetes: 0-7 and tagged 1.19, cka, cluster setup, k8s, kubeadm, kubernetes, node on October 8, 2020.

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK