Files
startusingansible/examples/015_2_roles/stack_status.yml
Guillem Hernandez Sola c98bfc32dd Deploy and stack status
2025-11-18 13:42:33 +00:00

28 lines
591 B
YAML

---
- hosts: loadbalancer
become: true
tasks:
- name: verify nginx service
command: service nginx status
- name: verify nginx is listening on 80
wait_for: port=80 timeout=3
- hosts: webserver
become: true
tasks:
- name: verify apache2 service
command: service apache2 status
- name: verify apache2 is listening on 80
wait_for: port=80 timeout=3
- hosts: database
become: true
tasks:
- name: verify mysql service
command: service mysql status
- name: verify mysql is listening on 3306
wait_for: port=3306 timeout=3