lab:stack_of_nucs:ansible_playbook_-_install_kubernetes
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
lab:stack_of_nucs:ansible_playbook_-_install_kubernetes [2023/05/09 20:32] – [Kubernetes Dashboard] user | lab:stack_of_nucs:ansible_playbook_-_install_kubernetes [2024/05/06 02:11] (current) – removed user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ansible Playbook - Install Kubernetes ====== | ||
- | In our previous step we [[Ansible Playbook - FAH Removal|cleaned up the FAH installation]] on our [[start|Stack of NUCs]]. | ||
- | |||
- | Now we are going to install Kubernetes with: | ||
- | * one NUC master node this we can call [[NUC 3]] | ||
- | * remaining NUCs " | ||
- | |||
- | Purpose: | ||
- | * Demonstrate a running a complex workload of web applications on Kubernetes | ||
- | |||
- | References | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | ====== Step 1 - Set Up for Kubernetes ====== | ||
- | - From [[NUC 1]], log in to the Ansible control node, [[NUC 2]]. | ||
- | - Create the k8s folder on the Ansible control node, [[NUC 2]] | ||
- | * '' | ||
- | - Create inventory file | ||
- | * Choose one IP address to be the Kubernetes master, add it to '' | ||
- | * The rest of the IP address should be added to '' | ||
- | * <file yaml inventory> | ||
- | [master] | ||
- | [workers] | ||
- | |||
- | [all:vars] | ||
- | ansible_python_interpreter=/ | ||
- | ansible_user=' | ||
- | ansible_become=true | ||
- | ansible_become_method=sudo | ||
- | </ | ||
- | - Set up ansible.cfg file to tell Ansible to use the inventory file | ||
- | * <file yaml ansible.cfg> | ||
- | [defaults] | ||
- | inventory | ||
- | </ | ||
- | - Set up the host files for name resolution | ||
- | * Playbook will update the '/ | ||
- | * Also adds this information to the Ansible control node (see ' | ||
- | * <file yaml updatehostsfile.yml> | ||
- | --- | ||
- | - name: Update etc/hosts file | ||
- | hosts: all, localhost | ||
- | gather_facts: | ||
- | tasks: | ||
- | - name: Populate all /etc/hosts files | ||
- | tags: etchostsupdate | ||
- | become: true | ||
- | become_user: | ||
- | lineinfile: | ||
- | path: "/ | ||
- | regexp: '.*{{ item }}$' | ||
- | line: "{{ hostvars[item][' | ||
- | state: present | ||
- | with_items: '{{ groups.all }}' | ||
- | </ | ||
- | * '' | ||
- | |||
- | ====== Step 2 - Set Up Kubernetes Using Ansible====== | ||
- | Check [[https:// | ||
- | |||
- | - Install some prerequisites on ALL the Kubernetes nodes | ||
- | * <file yaml kube-dependencies.yml> | ||
- | --- | ||
- | - hosts: all | ||
- | become: true | ||
- | tasks: | ||
- | - fail: | ||
- | msg: "OS should be Ubuntu 22.04, not {{ ansible_distribution }} {{ ansible_distribution_version }}" | ||
- | when: ansible_distribution != ' | ||
- | |||
- | - name: Update APT packages | ||
- | apt: | ||
- | update_cache: | ||
- | |||
- | - name: Reboot and wait for reboot to complete | ||
- | reboot: | ||
- | |||
- | - name: Disable SWAP (Kubeadm requirement) | ||
- | shell: | | ||
- | swapoff -a | ||
- | |||
- | - name: Disable SWAP in fstab (Kubeadm requirement) | ||
- | replace: | ||
- | path: /etc/fstab | ||
- | regexp: ' | ||
- | replace: '# \1' | ||
- | |||
- | - name: Create an empty file for the Containerd module | ||
- | copy: | ||
- | content: "" | ||
- | dest: / | ||
- | force: false | ||
- | |||
- | - name: Configure modules for Containerd | ||
- | blockinfile: | ||
- | path: / | ||
- | block: | | ||
- | | ||
- | | ||
- | |||
- | - name: Create an empty file for Kubernetes sysctl params | ||
- | copy: | ||
- | content: "" | ||
- | dest: / | ||
- | force: false | ||
- | |||
- | - name: Configure sysctl params for Kubernetes | ||
- | lineinfile: | ||
- | path: / | ||
- | line: "{{ item }}" | ||
- | with_items: | ||
- | - ' | ||
- | - ' | ||
- | - ' | ||
- | |||
- | - name: Apply sysctl params without reboot | ||
- | command: sysctl --system | ||
- | |||
- | - name: Install APT Transport HTTPS | ||
- | apt: | ||
- | name: apt-transport-https | ||
- | state: present | ||
- | |||
- | - name: Add Docker apt-key | ||
- | apt_key: | ||
- | url: https:// | ||
- | state: present | ||
- | |||
- | - name: Add Docker' | ||
- | apt_repository: | ||
- | repo: "deb [arch=amd64] https:// | ||
- | filename: " | ||
- | |||
- | - name: Add Kubernetes apt-key | ||
- | apt_key: | ||
- | url: https:// | ||
- | state: present | ||
- | |||
- | - name: Add Kubernetes' | ||
- | apt_repository: | ||
- | repo: deb https:// | ||
- | state: present | ||
- | filename: ' | ||
- | |||
- | - name: Install Containerd | ||
- | apt: | ||
- | name: containerd.io | ||
- | state: present | ||
- | |||
- | - name: Create Containerd directory | ||
- | file: | ||
- | path: / | ||
- | state: directory | ||
- | |||
- | - name: Add Containerd configuration | ||
- | shell: / | ||
- | |||
- | - name: Configuring the systemd cgroup driver for Containerd | ||
- | lineinfile: | ||
- | path: / | ||
- | regexp: ' | ||
- | line: ' | ||
- | |||
- | - name: Enable the Containerd service and start it | ||
- | systemd: | ||
- | name: containerd | ||
- | state: restarted | ||
- | enabled: true | ||
- | daemon-reload: | ||
- | |||
- | - name: Install Kubelet | ||
- | apt: | ||
- | name: kubelet=1.26.* | ||
- | state: present | ||
- | update_cache: | ||
- | |||
- | - name: Install Kubeadm | ||
- | apt: | ||
- | name: kubeadm=1.26.* | ||
- | state: present | ||
- | |||
- | - name: Enable the Kubelet service, and enable it persistently | ||
- | service: | ||
- | name: kubelet | ||
- | enabled: true | ||
- | |||
- | - name: Load br_netfilter kernel module | ||
- | modprobe: | ||
- | name: br_netfilter | ||
- | state: present | ||
- | |||
- | - name: Set bridge-nf-call-iptables | ||
- | sysctl: | ||
- | name: net.bridge.bridge-nf-call-iptables | ||
- | value: 1 | ||
- | |||
- | - name: Set ip_forward | ||
- | sysctl: | ||
- | name: net.ipv4.ip_forward | ||
- | value: 1 | ||
- | |||
- | - name: Check Kubelet args in Kubelet config | ||
- | shell: grep " | ||
- | register: check_args | ||
- | |||
- | - name: Add runtime args in Kubelet config | ||
- | lineinfile: | ||
- | dest: "/ | ||
- | line: " | ||
- | insertafter: | ||
- | when: check_args.stdout == "" | ||
- | |||
- | - name: Reboot and wait for reboot to complete | ||
- | reboot: | ||
- | |||
- | - hosts: master | ||
- | become: true | ||
- | tasks: | ||
- | - name: Install Kubectl | ||
- | apt: | ||
- | name: kubectl=1.26.* | ||
- | state: present | ||
- | force: true # allow downgrades | ||
- | </ | ||
- | * '' | ||
- | - Configure kubernetes cluster on master node | ||
- | * <file yaml master.yml> | ||
- | --- | ||
- | - hosts: master | ||
- | become: true | ||
- | tasks: | ||
- | - name: Create an empty file for Kubeadm configuring | ||
- | copy: | ||
- | content: "" | ||
- | dest: / | ||
- | force: false | ||
- | |||
- | - name: Configuring the container runtime including its cgroup driver | ||
- | blockinfile: | ||
- | path: / | ||
- | block: | | ||
- | kind: ClusterConfiguration | ||
- | | ||
- | | ||
- | | ||
- | --- | ||
- | kind: KubeletConfiguration | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | cpu: 100m | ||
- | | ||
- | | ||
- | cpu: 100m | ||
- | | ||
- | | ||
- | - pods | ||
- | |||
- | - name: Initialize the cluster (this could take some time) | ||
- | shell: kubeadm init --config / | ||
- | args: | ||
- | chdir: / | ||
- | creates: cluster_initialized.log | ||
- | |||
- | - name: Create .kube directory | ||
- | become: true | ||
- | become_user: | ||
- | file: | ||
- | path: $HOME/.kube | ||
- | state: directory | ||
- | mode: 0755 | ||
- | |||
- | - name: Copy admin.conf to user's kube config | ||
- | copy: | ||
- | src: / | ||
- | dest: / | ||
- | remote_src: true | ||
- | owner: ansible | ||
- | |||
- | - name: Install Pod network | ||
- | become: true | ||
- | become_user: | ||
- | shell: kubectl apply -f https:// | ||
- | args: | ||
- | chdir: $HOME | ||
- | creates: pod_network_setup.log | ||
- | </ | ||
- | * '' | ||
- | - SSH to the master and verify the master nodes gets status '' | ||
- | * '' | ||
- | - Initialize workers | ||
- | * Modify the file to replace MASTERIP with the IP address of your master node in two (2) places | ||
- | * <file yaml workers.yml> | ||
- | --- | ||
- | - hosts: master | ||
- | become: true | ||
- | # gather_facts: | ||
- | tasks: | ||
- | - name: Get join command | ||
- | shell: kubeadm token create --print-join-command | ||
- | register: join_command_raw | ||
- | |||
- | - name: Set join command | ||
- | set_fact: | ||
- | join_command: | ||
- | |||
- | - hosts: workers | ||
- | become: true | ||
- | tasks: | ||
- | - name: TCP port 6443 on master is reachable from worker | ||
- | wait_for: " | ||
- | |||
- | - name: Join cluster | ||
- | shell: "{{ hostvars[' | ||
- | args: | ||
- | chdir: / | ||
- | creates: node_joined.log | ||
- | </ | ||
- | * '' | ||
- | - SSH to the master and verify all the nodes return status '' | ||
- | * '' | ||
- | - Install kubectl on [[NUC 2]] for automation with Kubernetes | ||
- | * create file ''/ | ||
- | * <file yaml kubectlcontrolnode.yml> | ||
- | --- | ||
- | - hosts: localhost | ||
- | become: true | ||
- | gather_facts: | ||
- | tasks: | ||
- | - name: Update APT packages | ||
- | apt: | ||
- | update_cache: | ||
- | |||
- | - name: Add Kubernetes apt-key | ||
- | apt_key: | ||
- | url: https:// | ||
- | state: present | ||
- | |||
- | - name: Add Kubernetes' | ||
- | apt_repository: | ||
- | repo: deb https:// | ||
- | state: present | ||
- | filename: ' | ||
- | |||
- | - name: Install Kubectl | ||
- | apt: | ||
- | name: kubectl=1.26.* | ||
- | state: present | ||
- | force: true # allow downgrades | ||
- | </ | ||
- | * '' | ||
- | * Running '' | ||
- | * Copy credentials | ||
- | * '' | ||
- | * Confirm it's working by running '' | ||
- | - Install kubectl on [[NUC 1]] for remote testing | ||
- | * < | ||
- | sudo apt update | ||
- | sudo apt install -y ca-certificates curl | ||
- | sudo curl -fsSLo / | ||
- | echo "deb [signed-by=/ | ||
- | sudo apt update | ||
- | sudo apt install -y kubectl | ||
- | </ | ||
- | * Running '' | ||
- | * Copy credentials | ||
- | * '' | ||
- | * Confirm it's working by running | ||
- | * '' | ||
- | * '' | ||
- | |||
- | ====== Next Step ====== | ||
- | You have successful installed Kubernetes on your [[start|Stack of NUCs]]! Next we will [[demonstrate_app_on_k8s|demonstrate running a web app on Kubernetes]]. | ||
- | |||
- | ====== Optional ====== | ||
- | Do some tests with Kubernetes. | ||
- | |||
- | ===== Manually Create Pod ===== | ||
- | - <code bash> | ||
- | - '' | ||
- | * '' | ||
- | - '' | ||
- | - '' | ||
- | * this demonstrates another way to specify the pod, same as '' | ||
- | |||
- | ===== Create Pod using Pod Manifest ===== | ||
- | - Create yaml file | ||
- | * <file yaml speedtest-pod.yml> | ||
- | apiVersion: v1 | ||
- | kind: Pod | ||
- | metadata: | ||
- | name: speedtester | ||
- | spec: | ||
- | containers: | ||
- | - image: docker.io/ | ||
- | name: speedtester | ||
- | ports: | ||
- | - containerPort: | ||
- | name: http | ||
- | protocol: TCP | ||
- | </ | ||
- | - Build the pod | ||
- | * '' | ||
- | - Examine the pod | ||
- | * '' | ||
- | * '' | ||
- | - Test connecting to the speedtest application on the pod | ||
- | * from [[NUC 1]] | ||
- | * '' | ||
- | * browse to [[http:// | ||
- | * NOTE in testing, the port forwarding tended to break when it the upload test started (" | ||
- | * the worker node NUC doesn' | ||
- | * '' | ||
- | * '' | ||
- | * one workaround is to keep re-launching the port forward command, but that doesn' | ||
- | * later on, we will demonstrate it is stable when using a better forwarding mechanism | ||
- | * '' | ||
- | - Manage the pod | ||
- | * <code bash> | ||
- | kubectl logs speedtester | ||
- | kubectl exec speedtester -- date | ||
- | kubectl exec speedtester -- uname -a | ||
- | </ | ||
- | - Delete the pod | ||
- | * <code bash> | ||
- | kubectl delete -f speedtest-pod.yaml | ||
- | kubectl get pods | ||
- | </ | ||
- | ===== k9s ===== | ||
- | You can experiment running k9s on your Kubernetes master node | ||
- | * [[https:// | ||
- | * <code bash> | ||
- | mkdir k9s | ||
- | cd k9s | ||
- | wget https:// | ||
- | tar xzvf k9s_Linux_amd64.tar.gz | ||
- | ./k9s | ||
- | </ | ||
- | |||
- | ===== Kubernetes Dashboard ===== | ||
- | References: | ||
- | * [[https:// | ||
- | |||
- | - Step 1 - Install | ||
- | * Install the dashboard from [[NUC 1]] or [[NUC 2]] | ||
- | * '' | ||
- | - Step 2 - Create a service account and bind cluster-admin role to it | ||
- | * <code bash> | ||
- | kubectl create serviceaccount dashboard -n kubernetes-dashboard'' | ||
- | kubectl create clusterrolebinding dashboard-admin -n kubernetes-dashboard | ||
- | </ | ||
- | - Step 3 - Get a Bearer Token | ||
- | * '' | ||
- | - Step 4 - Access | ||
- | * From [[NUC 1]] run | ||
- | * '' | ||
- | * UI can __only be accessed from the machine where the command is executed__ | ||
- | * See '' | ||
- | * From a web browser on [[NUC 1]] open: | ||
- | * [[http:// | ||
- | * Authenticate with " | ||
- | - Step - 5 Deploy containerized applications | ||
- | * [[https:// | ||
lab/stack_of_nucs/ansible_playbook_-_install_kubernetes.1683664332.txt.gz · Last modified: 2023/05/09 20:32 by user