Skip to content
Snippets Groups Projects
cluster.yml 409 B
#!/usr/bin/env ansible-playbook
---

- import_playbook: includes/python.yml
- import_playbook: includes/check_docker.yml
- import_playbook: includes/conf.yml
- import_playbook: includes/init.yml
- import_playbook: includes/base.yml
- when: firewall_enabled | default(false) | bool
  import_playbook: includes/firewall.yml

- import_playbook: includes/cluster.yml

- import_playbook: includes/network.yml

...