You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-role-nginx/hadoop/site.yml

29 lines
482 B

11 years ago
---
# The main playbook to deploy the site
11 years ago
- hosts: hadoop_all
11 years ago
roles:
- common
- hosts: zookeeper_servers
roles:
- { role: zookeeper_servers, when: ha_enabled }
11 years ago
- hosts: qjournal_servers
roles:
- { role: qjournal_servers, when: ha_enabled }
11 years ago
- hosts: hadoop_master_primary
roles:
- { role: hadoop_primary }
11 years ago
- hosts: hadoop_master_secondary
roles:
- { role: hadoop_secondary, when: ha_enabled }
11 years ago
- hosts: hadoop_slaves
roles:
- { role: hadoop_slaves }
11 years ago