31 lines
523 B
YAML
31 lines
523 B
YAML
--
|
|
# This playbook deploys the whole application stack for wrestlingdev
|
|
#
|
|
- name: apply common configuration to all nodes
|
|
hosts: all
|
|
remote_user: root
|
|
|
|
roles:
|
|
- common
|
|
|
|
- name: configure and deploy the webservers and application code
|
|
hosts: webservers
|
|
remote_user: root
|
|
|
|
roles:
|
|
- web
|
|
|
|
- name: deploy first db and create cluster
|
|
hosts: dbfirstclustermachine
|
|
remote_user: root
|
|
|
|
roles:
|
|
- firstdb
|
|
|
|
- name: deploy mysql and configure database
|
|
hosts: dbservers
|
|
remote_user: root
|
|
|
|
roles:
|
|
- db
|