first sync
Run ansible / run-ansible-playbook (push) Failing after 1m0s

This commit is contained in:
2025-02-10 19:19:30 +01:00
parent 6335c8b085
commit 5800cf9263
25 changed files with 307 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
---
- name: Setup Docker & NFS on Ubuntu
hosts: all
become: true
roles:
- docker_install
- mount_nfs
- name: Init Docker Swarm
hosts: managers[0]
become: true
roles:
- init_docker_swarm
- name: Join Managers
hosts: managers
become: true
roles:
- manager_join_docker_swarm
- name: Join Workers
hosts: workers
become: true
roles:
- worker_join_docker_swarm
- name: Deploy Portainer
hosts: managers[0]
become: true
roles:
- portainer_deploy