mirror of
https://gitlab.com/rusty-bever/deployment.git
synced 2026-04-08 11:55:47 +02:00
Moved ansible stuff to own folder
This commit is contained in:
parent
868acbc08f
commit
fb5bb177ca
33 changed files with 1 additions and 22 deletions
17
ansible/roles/docker-swarm-add-worker/tasks/main.yml
Normal file
17
ansible/roles/docker-swarm-add-worker/tasks/main.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
- name: Check node state.
|
||||
register: node_state
|
||||
shell: "docker info --format '{{ '{{' }}.Swarm.LocalNodeState{{ '}}' }}'"
|
||||
ignore_errors: true
|
||||
changed_when: false
|
||||
|
||||
- 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' ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue