Using Multi-Node Clusters

Overview

  • This tutorial will show you how to start a multi-node clusters on minikube and deploy a service to it.

Prerequisites

  • minikube 1.10.1 or higher
  • kubectl

Tutorial

  • Start a cluster with 2 nodes in the driver of your choice:
  1. minikube start --nodes 2 -p multinode-demo
  1. 😄 [multinode-demo] minikube v1.18.1 on Opensuse-Tumbleweed
  2. Automatically selected the docker driver
  3. 👍 Starting control plane node multinode-demo in cluster multinode-demo
  4. 🔥 Creating docker container (CPUs=2, Memory=8000MB) ...
  5. 🐳 Preparing Kubernetes v1.20.2 on Docker 20.10.3 ...
  6. Generating certificates and keys ...
  7. Booting up control plane ...
  8. Configuring RBAC rules ...
  9. 🔗 Configuring CNI (Container Networking Interface) ...
  10. 🔎 Verifying Kubernetes components...
  11. Using image gcr.io/k8s-minikube/storage-provisioner:v5
  12. 🌟 Enabled addons: storage-provisioner, default-storageclass
  13. 👍 Starting node multinode-demo-m02 in cluster multinode-demo
  14. 🔥 Creating docker container (CPUs=2, Memory=8000MB) ...
  15. 🌐 Found network options:
  16. NO_PROXY=192.168.49.2
  17. 🐳 Preparing Kubernetes v1.20.2 on Docker 20.10.3 ...
  18. env NO_PROXY=192.168.49.2
  19. 🔎 Verifying Kubernetes components...
  20. 🏄 Done! kubectl is now configured to use "multinode-demo" cluster and "default" namespace by default
  • Get the list of your nodes:
  1. kubectl get nodes
  1. NAME STATUS ROLES AGE VERSION
  2. multinode-demo Ready control-plane,master 99s v1.20.2
  3. multinode-demo-m02 Ready <none> 73s v1.20.2
  • You can also check the status of your nodes:
  1. minikube status -p multinode-demo
  1. multinode-demo
  2. type: Control Plane
  3. host: Running
  4. kubelet: Running
  5. apiserver: Running
  6. kubeconfig: Configured
  7. multinode-demo-m02
  8. type: Worker
  9. host: Running
  10. kubelet: Running
  • Deploy our hello world deployment:
  1. kubectl apply -f hello-deployment.yaml
  1. deployment.apps/hello created
  1. kubectl rollout status deployment/hello
  1. deployment "hello" successfully rolled out
  • Deploy our hello world service, which just spits back the IP address the request was served from:
  1. kubectl apply -f hello-svc.yaml
  1. service/hello created
  • Check out the IP addresses of our pods, to note for future reference
  1. kubectl get pods -o wide
  1. NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
  2. hello-695c67cf9c-bzrzk 1/1 Running 0 22s 10.244.1.2 multinode-demo-m02 <none> <none>
  3. hello-695c67cf9c-frcvw 1/1 Running 0 22s 10.244.0.3 multinode-demo <none> <none>
  • Look at our service, to know what URL to hit
  1. minikube service list -p multinode-demo
  1. |-------------|------------|--------------|---------------------------|
  2. | NAMESPACE | NAME | TARGET PORT | URL |
  3. |-------------|------------|--------------|---------------------------|
  4. | default | hello | 80 | http://192.168.49.2:31000 |
  5. | default | kubernetes | No node port | |
  6. | kube-system | kube-dns | No node port | |
  7. |-------------|------------|--------------|---------------------------|
  • Let’s hit the URL a few times and see what comes back
  1. curl http://192.168.49.2:31000
  1. Hello from hello-695c67cf9c-frcvw (10.244.0.3)
  2. curl http://192.168.49.2:31000
  3. Hello from hello-695c67cf9c-bzrzk (10.244.1.2)
  4. curl http://192.168.49.2:31000
  5. Hello from hello-695c67cf9c-bzrzk (10.244.1.2)
  6. curl http://192.168.49.2:31000
  7. Hello from hello-695c67cf9c-frcvw (10.244.0.3)
  • Multiple nodes!

  • Referenced YAML files

  1. ---
  2. apiVersion: apps/v1
  3. kind: Deployment
  4. metadata:
  5. name: hello
  6. spec:
  7. replicas: 2
  8. strategy:
  9. type: RollingUpdate
  10. rollingUpdate:
  11. maxUnavailable: 100%
  12. selector:
  13. matchLabels:
  14. app: hello
  15. template:
  16. metadata:
  17. labels:
  18. app: hello
  19. spec:
  20. affinity:
  21. # ⬇⬇⬇ This ensures pods will land on separate hosts
  22. podAntiAffinity:
  23. requiredDuringSchedulingIgnoredDuringExecution:
  24. - labelSelector:
  25. matchExpressions: [{ key: app, operator: In, values: [hello] }]
  26. topologyKey: "kubernetes.io/hostname"
  27. containers:
  28. - name: hello-from
  29. image: pbitty/hello-from:latest
  30. ports:
  31. - name: http
  32. containerPort: 80
  33. terminationGracePeriodSeconds: 1
  1. ---
  2. apiVersion: v1
  3. kind: Service
  4. metadata:
  5. name: hello
  6. spec:
  7. type: NodePort
  8. selector:
  9. app: hello
  10. ports:
  11. - protocol: TCP
  12. nodePort: 31000
  13. port: 80
  14. targetPort: http

Last modified April 5, 2021: multinode: fix kindnet and dns issues (387ad774b)