lab:demonstrate_app_on_k8s
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:demonstrate_app_on_k8s [2023/04/23 19:16] – updated playbook user | lab:demonstrate_app_on_k8s [2023/04/30 20:11] (current) – replaced user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Demonstrate App on k8s ====== | ||
- | From [[NUC 1]], log in to the Ansible control node, [[NUC 2]]. | ||
- | In our previous step we [[install_kubernetes|installed Kubernetes]] on our [[Stack of NUCs]]. | ||
- | |||
- | Now we are going to install a web app and expose it to our internal network. | ||
- | |||
- | Purpose: | ||
- | * Demonstrate a running a web application on Kubernetes | ||
- | |||
- | References | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | Steps: | ||
- | - Create distribution | ||
- | * <file yaml speedtester-deployment.yaml> | ||
- | apiVersion: apps/v1 | ||
- | kind: Deployment | ||
- | metadata: | ||
- | name: speedtester | ||
- | labels: | ||
- | run: speedtester | ||
- | spec: | ||
- | selector: | ||
- | matchLabels: | ||
- | run: speedtester | ||
- | replicas: 2 | ||
- | template: | ||
- | metadata: | ||
- | labels: | ||
- | run: speedtester | ||
- | spec: | ||
- | containers: | ||
- | - name: speedtester | ||
- | image: docker.io/ | ||
- | livenessProbe: | ||
- | httpGet: | ||
- | path: / | ||
- | port: 80 | ||
- | initialDelaySeconds: | ||
- | periodSeconds: | ||
- | </ | ||
- | * '' | ||
- | - View distribution information | ||
- | * '' | ||
- | * '' | ||
- | - Increase number of replicas | ||
- | * Exit the file speedtester-deployment.yaml to set the number of replicas to the number of Kubernetes worker nodes you have | ||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | - Create a service | ||
- | - Using expose | ||
- | * '' | ||
- | - Using a manifest | ||
- | * <file yaml speedtester-service.yaml> | ||
- | apiVersion: v1 | ||
- | kind: Service | ||
- | metadata: | ||
- | name: speedtester-service | ||
- | spec: | ||
- | selector: | ||
- | run: speedtester | ||
- | type: NodePort | ||
- | ports: | ||
- | - protocol: TCP | ||
- | port: 8080 | ||
- | targetPort: 80 | ||
- | notePort: 30080 | ||
- | </ | ||
- | * '' | ||
- | - '' | ||
- | - '' | ||
- | - Test access | ||
- | * point your web browser on [[NUC 1]] to the IP address of any node and the port we selected, port 300080 | ||
- | * Example: '' | ||
- | - Alternative test from [[NUC 1]] | ||
- | * '' | ||
- | * point browser to [[https:// | ||
- | |||
- | ====== Optional ====== | ||
- | Perform some examples off automation using Ansible with Kubernetes | ||
- | * restart pods? | ||
- | |||
- | example from documentation is creating namespaces | ||
- | * '' | ||
- | |||
- | ===== Chaos Testing ===== | ||
- | Proper chaos testing: | ||
- | [[https:// | ||
- | |||
- | Some small scale testing below. | ||
- | |||
- | ==== Kill Pods ==== | ||
- | You can watch what's happening a couple of ways: | ||
- | * '' | ||
- | * '' | ||
- | |||
- | Killing pods: | ||
- | * watch pods terminating and creating | ||
- | Rebooting nodes: | ||
- | * worker nodes show status unknown on pods, then return to running | ||
- | * once in a while the random selection hits the master node | ||
- | * watch to see what happens then | ||
- | |||
- | === Literally kill the first pod in the list === | ||
- | <code bash> | ||
- | kubectl delete pod $(kubectl get pods -l run=speedtester -o jsonpath=' | ||
- | </ | ||
- | |||
- | === Forever loop to keep killing the first pod on the list === | ||
- | <code bash> | ||
- | while true; do | ||
- | kubectl delete pod $(kubectl get pods -l run=speedtester -o jsonpath=' | ||
- | done | ||
- | </ | ||
- | |||
- | === Kill all the current pods === | ||
- | This is slow because the loop structure is sequential. | ||
- | |||
- | '' | ||
- | |||
- | <file yaml deletepod.yml> | ||
- | --- | ||
- | - name: Delete current pods matching speedtester | ||
- | hosts: localhost | ||
- | vars: | ||
- | pod_filter: | ||
- | - speedtester # beginning of the pod name | ||
- | gather_facts: | ||
- | tasks: | ||
- | - name: Get a list of all pods from the namespace | ||
- | command: kubectl get pods --no-headers -o custom-columns=": | ||
- | register: pod_list | ||
- | - name: Print pod names | ||
- | debug: | ||
- | msg: "{{ item }}" | ||
- | loop: "{{ pod_list.stdout_lines }}" | ||
- | when: item is match(pod_filter|join(' | ||
- | - name: Delete matching pods | ||
- | command: kubectl delete pod "{{ item }}" | ||
- | loop: "{{ pod_list.stdout_lines }}" | ||
- | when: item is match(pod_filter|join(' | ||
- | </ | ||
- | |||
- | Using async we can limit the waiting to see if the command returns. | ||
- | |||
- | '' | ||
- | |||
- | <file yaml deletepod-async.yml> | ||
- | --- | ||
- | - name: Delete current pods matching speedtester | ||
- | hosts: localhost | ||
- | vars: | ||
- | pod_filter: | ||
- | - speedtester # beginning of the pod name | ||
- | gather_facts: | ||
- | tasks: | ||
- | - name: Get a list of all pods from the namespace | ||
- | command: kubectl get pods --no-headers -o custom-columns=": | ||
- | register: pod_list | ||
- | - name: Print pod names | ||
- | debug: | ||
- | msg: "{{ item }}" | ||
- | loop: "{{ pod_list.stdout_lines }}" | ||
- | when: item is match(pod_filter|join(' | ||
- | - name: Delete matching pods | ||
- | command: kubectl delete pod "{{ item }}" | ||
- | async: 5 # timeout in seconds | ||
- | poll: 1 # poll every second | ||
- | loop: "{{ pod_list.stdout_lines }}" | ||
- | when: item is match(pod_filter|join(' | ||
- | </ | ||
- | |||
- | ==== Crash pods ==== | ||
- | '' | ||
- | |||
- | <file yaml killpod-webservice.yml> | ||
- | --- | ||
- | - name: Crash current pods matching speedtester | ||
- | hosts: localhost | ||
- | vars: | ||
- | pod_filter: | ||
- | - speedtester # beginning of the pod name | ||
- | gather_facts: | ||
- | tasks: | ||
- | - name: Get a list of all pods from the namespace | ||
- | command: kubectl get pods --no-headers -o custom-columns=": | ||
- | register: pod_list | ||
- | - name: Print pod names | ||
- | debug: | ||
- | msg: "{{ item }}" | ||
- | loop: "{{ pod_list.stdout_lines }}" | ||
- | when: item is match(pod_filter|join(' | ||
- | - name: Stop nginx on the pod | ||
- | command: kubectl exec "{{ item }}" -- pkill supervisord | ||
- | async: 5 # timeout in seconds | ||
- | poll: 1 # poll every second | ||
- | loop: "{{ pod_list.stdout_lines }}" | ||
- | when: item is match(pod_filter|join(' | ||
- | </ | ||
- | |||
- | ==== Reboot a Random Ansible Node ==== | ||
- | <file yaml randomreboot.yml> | ||
- | --- | ||
- | - hosts: localhost | ||
- | connection: local | ||
- | gather_facts: | ||
- | tasks: | ||
- | - add_host: | ||
- | name: "{{ item }}" | ||
- | groups: limited_selection | ||
- | loop: "{{ (groups[' | ||
- | |||
- | - hosts: limited_selection | ||
- | gather_facts: | ||
- | tasks: | ||
- | - reboot: | ||
- | </ |
lab/demonstrate_app_on_k8s.1682277365.txt.gz · Last modified: 2023/04/23 19:16 by user