diff options
Diffstat (limited to 'playbooks/swarm-cluster.yml')
-rw-r--r-- | playbooks/swarm-cluster.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/playbooks/swarm-cluster.yml b/playbooks/swarm-cluster.yml new file mode 100644 index 0000000..945edb9 --- /dev/null +++ b/playbooks/swarm-cluster.yml @@ -0,0 +1,24 @@ +--- + +- name: Configure Docker Swarm Firewall Rules + hosts: swarm + become: true + tasks: + - name: Enable Local Swarm Communications + community.general.ufw: + rule: allow + from: "10.0.0.0/8" + state: enabled + +- name: Setup swarm on init node + hosts: swarm[0] + become: true + roles: + - swarm-init + +- name: Join non-init nodes + hosts: swarm:!swarm[0] + become: true + roles: + - swarm-join + |