Getting shell set up

This commit is contained in:
2016-01-14 08:46:55 -05:00
parent 64979e15a5
commit 1771165636
8 changed files with 237 additions and 0 deletions

30
site.yml Normal file
View File

@@ -0,0 +1,30 @@
--
# 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