Changes between Version 4 and Version 5 of Tutorials/m0SDN/k8s
- Timestamp:
- Jul 12, 2023, 7:16:44 PM (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/m0SDN/k8s
v4 v5 1 1 [[TOC(Documentation/f*, depth=3)]] 2 2 3 == Tutorial: Kubernetes Setup==3 == Tutorial: Kubernetes Multi Node Setup== 4 4 Requirements: 5 5 … … 11 11 12 12 ---- 13 Let’s take a look at this Kubernetes Multi-Node lab setup step-by-step and see how it is put together. 13 14 14 In this tutorial, we will be using one of the sb9 nodes for setting up Kubernetes. However, sb(1-10) should also be capable forKubernetes setup.15 In this tutorial, we will be using one of the sb9 nodes for setting up Kubernetes. Any sb(1-10) should also be capable of Kubernetes setup. 15 16 16 Make sure you have Ubuntu 20.04.5 (**baseline20.04.ndz**) or 22.04.2 (**ubuntu2204-beta.ndz**) LTS. To get the Ubuntu Version, follow these steps after ssh 'inginto your console. Substitute for the image and node you want.17 Make sure you have Ubuntu 20.04.5 (**baseline20.04.ndz**) or 22.04.2 (**ubuntu2204-beta.ndz**) LTS. To get the Ubuntu Version, follow these steps after ssh into your console. Substitute for the image and node you want. 17 18 18 19 The below steps illustrate loading Ubuntu 20.04.5 LTS for node1-5 of sb1. For the sb1 console, … … 30 31 }}} 31 32 32 To verify if you have loaded your Ubuntu version properly, use this command after ssh into the node1-5 33 To verify if you have loaded your Ubuntu version properly, use this command after ssh into the node1-5 33 34 34 35 {{{#!shell … … 123 124 124 125 === Joining Worker Nodes to the Cluster === 125 Make sure you run till step 9[including] on the worker nodesand then126 Make sure you follow till step 9[including] on the worker nodes, and then 126 127 To join worker nodes to the Kubernetes cluster, run the `kubeadm join` command on the worker nodes that was outputted by the above `kubeadm init` command. 127 128 … … 132 133 }}} 133 134 135 To get the current status of nodes 136 {{{#!shell 137 root@node1-5:~# kubectl get nodes 138 }}} 139 140