Files
configpolicy/taiga.yml
Dustin C. Hatch 0dc6a80ea2 taiga: Add playbook for Taiga
The `taiga.yml` playbook deploys all the necessary components to run
*taiga-back*, *taiga-front*, and *taiga-events*.
2019-09-19 19:51:45 -05:00

34 lines
633 B
YAML

- hosts: taiga
roles:
- sudo
- postgresql-server
- rabbitmq
- hosts: taiga
tasks:
- name: ensure postgresql server is running
service:
name=postgresql
state=started
- name: ensure rabbitmq server is running
service:
name=rabbitmq-server
state=started
- hosts: taiga
roles:
- apache
- taiga
- hosts: taiga
tasks:
- name: ensure taiga is running
service:
name=taiga
state=started
- name: ensure taiga-events is running
service:
name=taiga-events
state=started
- name: ensure apache is running
service:
name=httpd
state=started