lab:stack_of_nucs:ansible_playbook_-_install_haproxy
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:stack_of_nucs:ansible_playbook_-_install_haproxy [2024/02/13 03:33] – [Step 3 - Install HAProxy] user | lab:stack_of_nucs:ansible_playbook_-_install_haproxy [2024/05/06 02:11] (current) – removed user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Install HAProxy ====== | ||
- | In our previous step we [[demonstrate_app_on_k8s|deployed a web app]] to Kubernetes on our [[start|Stack of NUCs]]. | ||
- | Now we are going to install HAProxy. | ||
- | |||
- | Purpose: | ||
- | * Demonstrate a using HAProxy in front of a web application on Kubernetes | ||
- | |||
- | References | ||
- | * [[https:// | ||
- | |||
- | ====== Step 1 - Connect to the Ansible control node ====== | ||
- | From [[NUC 1]], log in to the Ansible control node, [[NUC 2]]. | ||
- | |||
- | ====== Step 2 - Set Up a Folder for Configuration and Playbooks ====== | ||
- | - Create folder ''/ | ||
- | - Copy the '' | ||
- | * '' | ||
- | - Create the file ''/ | ||
- | * <file yaml ansible.cfg> | ||
- | [defaults] | ||
- | inventory | ||
- | </ | ||
- | - Create the file ''/ | ||
- | * <file yaml haproxy.cfg.j2> | ||
- | # ------------------------ | ||
- | # main frontend which proxys to the backends | ||
- | # ------------------------ | ||
- | frontend main | ||
- | bind *:8080 | ||
- | acl url_static | ||
- | acl url_static | ||
- | |||
- | use_backend static | ||
- | default_backend app | ||
- | # ------------------------ | ||
- | # static backend for serving up images, stylesheets and such | ||
- | # ------------------------ | ||
- | backend static | ||
- | balance roundrobin | ||
- | server | ||
- | # ------------------------ | ||
- | # round robin balancing between the various backends | ||
- | # ------------------------ | ||
- | backend app | ||
- | balance roundrobin | ||
- | {% for ip in groups[' | ||
- | server app{{ loop.index}} {{ ip }}:80 check | ||
- | {% endfor %} | ||
- | </ | ||
- | ====== Step 3 - Install HAProxy ====== | ||
- | |||
- | <file yaml haproxy-install.yml> | ||
- | --- | ||
- | - hosts: workers | ||
- | become: true | ||
- | tasks: | ||
- | - name: Install haproxy | ||
- | package: | ||
- | name: haproxy | ||
- | state: present | ||
- | - name: Configure haproxy.cfg file | ||
- | template: | ||
- | src: "/ | ||
- | dest: "/ | ||
- | - name: " | ||
- | service: | ||
- | name: haproxy | ||
- | state: restarted | ||
- | </ | ||
- | |||
- | < | ||
- | |||
- | ====== Step 4 - Test HAProxy ====== | ||
- | - Point your browser to '' | ||
- | - Let's prove that any of the nodes will serve the app from any pod on any host | ||
- | * Change directory to ''/ | ||
- | * Edit '' | ||
- | * '' | ||
- | * Use '' | ||
- | * Point your browser to any of the k8s working IPs on port 8080 and note the app is still up | ||
- | * Set the replicas back to equal the number of worker nodes and apply the file again | ||
- | |||
- | ====== Next Step ====== | ||
- | You have complete this Lab! What did you think of it? What suggestions do you have for improvement? | ||
- | |||
- | ====== Optional ====== | ||
- | A possible future lab could be written to install a ML model on a Kubernetes cluster so it can be applied to incoming data. | ||
- | |||
- | References: | ||
- | * [[https:// | ||
- | * [[https:// |
lab/stack_of_nucs/ansible_playbook_-_install_haproxy.1707795194.txt.gz · Last modified: 2024/02/13 03:33 by user