About this Lab
1. Overview

2. Demo
In case you prefer a video, check below our YouTube video for this lab
3. 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

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

enter captured command in second and third node
kubeadm join XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX



4. Create a Pod with Kubectl
Task: Create a pod with name web and image nginx
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
5. Delete pod with kubectl
Task: Delete pod you created in previous step using kubectl
verify with below command
kubectl get pods
Solution
kubectl delete pod web
this command will delete pod with name web
6. Expose pod port with kubectl
Task: Create a pod using Kubectl and expose port
name: web
image: nginx
port: 80
verify with below command
kubectl get all
Solution
kubectl run web --image=nginx --port=80
7. 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
8. Find port used by Nodeport
Task: Find port used by nodeport service in Kubernetes to expose container
Solution
kubectl get all
9. Access container port
Task: Access container port using browser
Solution
- Copy URL link
- open new tab and paste url with port number after ‘:’
- Example http://ip172-18-0-29-c5o8pbdac5og00dutle0.direct.labs.play-with-k8s.com:30662/
- Port number and URL will be different for you.
10. Create NodePort service
Task: Create nodeport service using kubectl command
name: nginx-svc
container port: 80
target port: 80
nodeport: 3001
verify with below command
kubectl get svc
Solution
kubectl create service nodeport nginx-svc1 --tcp=80:80 --node-port=30001
11. add label to pod
Task: Try accessing nodeport using URL with port 30001
It will not work as nodeport service require label to match container
Add label to get nodeport service working
verify with below command
kubectl describe svc nginx-svc1
Solution
kubectl label pod web app=nginx-svc1
12. Access container port using nodeport
Task: Access container port using browser
Solution
- Copy URL link
- open new tab and paste url with port number after ‘:’
- Example http://ip172-18-0-29-c5o8pbdac5og00dutle0.direct.labs.play-with-k8s.com:30662/
- Port number and URL will be different for you.
13. Get yaml for creating pod
Task: Use kubectl command to generate yaml for creating a pod
name: web
image: nginx
Solution
kubectl run web --image=nginx --dry-run=client -o yaml
14. Find node where pod is running
Task: Which node is pod running on?
Solution
kubectl get pods -o wide
15. Delete pod with kubectl
Task: Delete pod you created in previous step using kubectl
verify with below command
kubectl get pods
Solution
kubectl delete pod web
this command will delete pod with name web
16. Cleanup
Task: Delete all open nodes/instances and close session
- Select the node and click on DELETE
- Repeat same for any other open nodes
- click close session
}}