lab:ansible_virtualbox_autoboot_linux:deploy_an_application_to_our_fleet_of_vms
This is an old revision of the document!
Table of Contents
Deploy an Application to our fleet of VMs
In this step will deploy a placeholder web application to the servers.
Deploy a Demonstration App
Create the application.yml file
This file contains settings to use when configuring Nginx.
- application.yml
--- application: Name: test Root: /var/www/html http_port: 80
Create the jinja (j2) Template for Nginx
--- application: Name: test Root: /var/www/html http_port: 80 ansible@autobox:~$ cat app-conf.j2 server { listen {{ application.http_port }} default_server; server_name {{ application.Name }}; root {{ application.Root }}; index index.php index.html; location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { try_files $uri =404; fastcgi_pass unix:/var/run/php/{{ php_fpm_version }}.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
Deploy Nginx with PHP and Set up a Test App
- application_fleet.yml
--- - hosts: all name: application_fleet.yml become: true gather_facts: true vars_files: - application.yml tasks: - name: Install Nginx apt: name: nginx state: present update_cache: true - name: Install PHP and extensions apt: name: - php - php-fpm # For FastCGI Process Manager state: present - name: Start and enable Nginx service: name: nginx state: started enabled: true - name: Get list of services service_facts: - name: get the php-fwm version set_fact: php_fpm_version: "{{ item }}" when: - ansible_facts.services[item].name | regex_search("^php.+fpm$") with_items: "{{ ansible_facts.services }}" - name: Start and enable PHP-FPM service: name: "{{ php_fpm_version }}" state: started enabled: true - name: Create a phpinfo page blockinfile: path: /var/www/html/index.php block: | <?php phpinfo(); ?> create: true marker: "" - name: Create application conf file template: src: ./app-conf.j2 dest: "/etc/nginx/sites-available/{{ application.Name }}.conf" mode: "755" - name: Activate Nginx site by creating symlink file: src: "/etc/nginx/sites-available/{{ application.Name }}.conf" dest: "/etc/nginx/sites-enabled/{{ application.Name }}.conf" state: link - name: Deactivate default site file: path: /etc/nginx/sites-enabled/default state: absent - name: Reload Nginx service: name: nginx state: reloaded
Run playbook: ansible-playbook -i inventory application_fleet.yml
Test
Open each VM IP address in a web browser and confirm you see the standard phpinfo() page, similar to the following.
http://<IPADDRESS>
The following playbook will confirm a page with HTTP status 200 is returned (but not the contents)
- check_fleet.yml
--- - hosts: all become: true tasks: - name: Check web server status on port 80 uri: url: http://{{ inventory_hostname }}:80/ follow_redirects: no register: web_status - name: Assert 200 HTTP status code assert: that: web_status.status == 200 msg: "Expected HTTP 200 status code, but got {{ web_status.status }}. Please check web server health." - name: Print website response (optional) debug: msg: "Website response: {{ web_status.content }}" when: web_status_conent is defined and web_status.content != ''
Reboot the Servers 50% at a Time
Shut the Servers Down then Power On Two Ways
- shutdown_fleet.yml
--- - hosts: all become: true tasks: - name: Gracefully shut down server community.general.shutdown:
- power_off_fleet.yml
--- - hosts: localhost # Run actions on the local machine name: destroy_fleet.yml connection: local gather_facts: false vars_files: - variables.yml - servers.yml tasks: - name: Shut down VM command: "{{ Global.vboxmanage_path }} controlvm {{ item.Name }} acpipowerbutton" ignore_errors: true when: item.Deploy loop: "{{ Server_List }}"
- start_fleet.yml
--- - hosts: localhost # Run actions on the local machine name: destroy_fleet.yml connection: local gather_facts: false vars_files: - variables.yml - servers.yml tasks: - name: Shut down VM command: "{{ Global.vboxmanage_path }} startvm {{ item.Name }}" ignore_errors: true when: item.Deploy loop: "{{ Server_List }}"
Replace Rebuilt Servers
rebuild specified server from scratch complete with Apache and simulated application
Next Step
Continue to Tear Down the Lab
Or back to Deploy a Fleet of VMs
Optional
lab/ansible_virtualbox_autoboot_linux/deploy_an_application_to_our_fleet_of_vms.1706672724.txt.gz ยท Last modified: 2024/01/31 03:45 by user