community.docker.docker_stack_task_info – Return information of the tasks on a docker stack¶
Note
This plugin is part of the community.docker collection (version 1.5.0).
To install it use: ansible-galaxy collection install community.docker
.
To use it in a playbook, specify: community.docker.docker_stack_task_info
.
Synopsis¶
Retrieve information on docker stacks tasks using the
docker stack
command on the target node (see examples).
Examples¶
- name: Shows stack info
community.docker.docker_stack_task_info:
name: test_stack
register: result
- name: Show results
ansible.builtin.debug:
var: result.results
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Jose Angel Munoz (@imjoseangel)