first part of config

This commit is contained in:
Jef Roosens 2021-12-11 16:28:17 +01:00
commit 8ee7c76f64
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
30 changed files with 729 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
- name: Check node state.
register: node_state
shell: "docker info --format '{{ '{{' }}.Swarm.LocalNodeState{{ '}}' }}'"
ignore_errors: true
- name: Add worker to swarm.
register: join_cmd
shell: >
docker swarm join
--token {{ hostvars.admin.worker_token }}
{{ hostvars.admin.ansible_host }}:2377
# 0 means it was successfully added, 1 means it's already in the swarm.
failed_when: join_cmd.rc != 0
changed_when: join_cmd.rc == 0
when: node_state.stdout not in [ 'active', 'locked', 'error' ]