(K8s) Kubernetes lab 321 Perform a version upgrade on a Kubernetes cluster using Kubeadm

access_time130 mins remaining
(K8s) Kubernetes lab 321 Perform a version upgrade on a Kubernetes cluster using Kubeadm

About this Lab

subjectLast updated Oct 20, 2021
account_circleWritten by www.ShareLearn.net

1. Overview

image#### In this lab we will practice doing a version upgrade on a Kubernetes cluster using Kubeadm

Agenda

In this lab we will upgrade Kubernetes cluster

you can only upgrade from one minor version at a time.

Lets Practice

2. Create Kubernetes cluster

Task: Create Kubernetes cluster with 3 worker nodes.

Master: 1 node

Worker: 2 node

Hint

Solution

Create docker hub account. Docker Hub if you already have one skip this step

Open Play with Kubernetes login with your docker hub account.

Click on start

It will start a 4 hr session

create three instance

click on + ADD NEW INSTANCE three time to add three instances

imageon first instance enter below command, this node will be master node
kubeadm init --apiserver-advertise-address $(hostname -i) --pod-network-cidr 10.5.0.0/16

enter below command on first node

kubectl apply -f https://raw.githubusercontent.com/cloudnativelabs/kube-router/master/daemonset/kubeadm-kuberouter.yaml

capture output of kubeadm join XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

image

enter captured command in second and third node

kubeadm join  XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
imageimageCheck node status, all 3 nodes should be in ready state image

3. Create a Pod

Task: Create a pod with below details using kubectl

name: web

image: nginx

Use Kubectl command

verify with below command

kubectl get pods
Solution

this command will create pod with image nginx and name web

kubectl run web --image=nginx

4. Create a Deployment

Task: Create a deployment with following details:

name: demo

image: nginx

Use Kubectl command

verify with below command

kubectl create deployment demo --image=nginx
Solution

this command will create a deployment with name demo and image nginx

kubectl run web --image=nginx

5. Expose pod port outside cluster

Task: Create a pod using Kubectl and expose port, port should be accessible from outside Kubernetes cluster

name: web

image: nginx

port: 80

verify with below command

kubectl get all
Solution
 kubectl expose pod web --port 80 --name=nginx-svc --type=NodePort --target-port=80

6. Find port used by Nodeport

Task: Find port used by nodeport service in Kubernetes to expose container

Solution
kubectl get all

7. Check Kubernetes version

Task: Check Kubernetes version running on all nodes

Solution
kubectl get nodes

8. Check Kubelet version

Task: Check Kubelet version running on all nodes

Solution
kubelet --version

9. Check Kubectl version

Task: Check Kubectl version running on master nodes

Solution
kubectl version

10. Check Kubeadm version

Task: Check Kubeadm version running on master nodes

Solution
kubeadm version

11. list Kubeadm versions

Task: List available Kubeadm version on master node

Solution
yum list --showduplicates kubeadm --disableexcludes=kubernetes
yum list --showduplicates kubeadm --disableexcludes=kubernetes | grep <use the version of interest>

find 1.x.x

12. Upgrade Kubeadm, Kubelet, Kubectl

Task: Upgrade Kubeadm, Kubelet, Kubectl version running on master nodes

Solution
yum install -y kubeadm-1.X.x-x kubelet-1.X.x-x kubectl-1.X.x-x --disableexcludes=kubernetes

13. Verify upgrade

Task: Verify upgrade performed in previous step

Solution
kubeadm version
kubelet --version
kubectl version

14. Take node to maintenance mode

Task: Take node1 to maintenance mode

Solution
kubectl drain node1 --ignore-daemonsets

15. Check upgrade plan

Task: Check upgrade plan on master node

Solution
kubeadm upgrade plan

16. Upgrade kubernetes control plane

Task: Upgrade Kubernetes cluster

Solution
kubeadm upgrade apply v1.x.x

17. Check Kubectl version

Task: Check Kubectl version running on master nodes

Solution
kubectl version

18. Upgrade kubernetes CNI

Task: Upgrade CNI

Solution
kubectl apply -f https://raw.githubusercontent.com/cloudnativelabs/kube-router/master/daemonset/kubeadm-kuberouter.yaml

19. Restart kubelet

Task: Restart kubelet on node 1

Solution
systemctl daemon-reload && systemctl restart kubelet

20. Check Kubernetes version

Task: Check kubernetes version on node1

Solution
kubectl get nodes

21. Bring node back from maintainence mode

Task: Bring node1 back from maintainence mode

Solution
kubectl uncordon node1

22. Upgrade rest of the nodes

Task: Upgrade node 2 and 3

Solution

23. Cleanup

Task: Delete all open nodes/instances and close session

  1. Select the node and click on DELETE
  2. Repeat same for any other open nodes
  3. click close session

cleanup}}


24. Conclusion

Click on ‘Submit Feedback’ on the bottom left of the page to submit any questions/feedback.
bug_report Submit feedback