Change in the docker_swarm_info behaviour.

This commit is contained in:
Andrea Dell'Amico 2023-10-07 18:56:42 +02:00
parent 260bfa8fb6
commit a1f69bae9e
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 11 additions and 12 deletions

View File

@ -16,20 +16,19 @@
- docker_swarm_manager_main_node | bool
tags: [ 'docker', 'docker_swarm', 'docker_swarm_init' ]
- block:
- name: Get swarm status information
community.docker.docker_swarm_info:
state: inspect
register: swarm_info_data
- name: Get the swarm manager token
set_fact:
docker_swarm_mgr_token: '{{ swarm_info_data.swarm_facts.JoinTokens.Manager }}'
cacheable: True
- name: swarm_mgr | Setup the docker swarm
when: docker_swarm_manager
delegate_to: '{{ docker_swarm_manager_main_node_address }}'
tags: [ 'docker', 'docker_swarm' ]
tags: ['docker', 'docker_swarm']
block:
- name: swarm_mgr | Get swarm status information
community.docker.docker_swarm_info:
register: swarm_info_data
- name: swarm_mgr | Get the swarm manager token
set_fact:
docker_swarm_mgr_token: '{{ swarm_info_data.swarm_facts.JoinTokens.Manager }}'
cacheable: true
- block:
- name: Add some manager nodes to the docker swarm cluster