community.docker.docker_stack_info module – Return information on all docker stacks
Note
This module is part of the community.docker collection (version 3.4.11).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.docker
.
To use it in a playbook, specify: community.docker.docker_stack_info
.
Synopsis
Retrieve information on docker stacks using the
docker stack
command on the target node (see examples).
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full This action does not modify state. |
Can run in |
|
Support: N/A This action does not modify state. |
Will return details on what has changed (or possibly needs changing in |
See Also
See also
- community.docker.docker_stack_task_info
To retrieve detailed information about the services under a specific stack use the community.docker.docker_stack_task_info module.
Examples
- name: Shows stack info
community.docker.docker_stack_info:
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:
Key |
Description |
---|---|
List of dictionaries containing the list of stacks on the target node Returned: always Sample: |