mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-15 19:42:06 +00:00
* Move licenses to LICENSES/, use SPDX-License-Identifier, mention all licenses in galaxy.yml. * ignore.txt lines cannot be empty or contain only a comment. * Cleanup. * This particular __init__.py seems to be crucial. * Try extra newline. * Markdown comments are a real mess. I hope this won't break Galaxy... * More licenses. * Add sanity test. * Skip some files, lint. * Make sure there is a copyright line everywhere. * Also check for copyright line in sanity tests. * Remove colon after 'Copyright'. * Normalize lint script. * Avoid colon after 'Copyright' in lint script. * Improve license checker. * Update README.md Co-authored-by: Maxwell G <9920591+gotmax23@users.noreply.github.com> * Remove superfluous space. * Referencing target instead of symlink Co-authored-by: Maxwell G <9920591+gotmax23@users.noreply.github.com>
120 lines
3.1 KiB
Python
120 lines
3.1 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# Copyright (c) 2019 Hannes Ljungberg <hannes.ljungberg@gmail.com>
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: docker_swarm_service_info
|
|
|
|
short_description: Retrieves information about docker services from a Swarm Manager
|
|
|
|
description:
|
|
- Retrieves information about a docker service.
|
|
- Essentially returns the output of C(docker service inspect <name>).
|
|
- Must be executed on a host running as Swarm Manager, otherwise the module will fail.
|
|
|
|
|
|
options:
|
|
name:
|
|
description:
|
|
- The name of the service to inspect.
|
|
type: str
|
|
required: yes
|
|
extends_documentation_fragment:
|
|
- community.docker.docker
|
|
- community.docker.docker.docker_py_1_documentation
|
|
|
|
|
|
author:
|
|
- Hannes Ljungberg (@hannseman)
|
|
|
|
requirements:
|
|
- "L(Docker SDK for Python,https://docker-py.readthedocs.io/en/stable/) >= 2.0.0"
|
|
- "Docker API >= 1.25"
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
- name: Get info from a service
|
|
community.docker.docker_swarm_service_info:
|
|
name: myservice
|
|
register: result
|
|
'''
|
|
|
|
RETURN = '''
|
|
exists:
|
|
description:
|
|
- Returns whether the service exists.
|
|
type: bool
|
|
returned: always
|
|
sample: true
|
|
service:
|
|
description:
|
|
- A dictionary representing the current state of the service. Matches the C(docker service inspect) output.
|
|
- Will be C(none) if service does not exist.
|
|
returned: always
|
|
type: dict
|
|
'''
|
|
|
|
import traceback
|
|
|
|
from ansible.module_utils.common.text.converters import to_native
|
|
|
|
try:
|
|
from docker.errors import DockerException
|
|
except ImportError:
|
|
# missing Docker SDK for Python handled in ansible.module_utils.docker.common
|
|
pass
|
|
|
|
from ansible_collections.community.docker.plugins.module_utils.common import (
|
|
RequestException,
|
|
)
|
|
|
|
from ansible_collections.community.docker.plugins.module_utils.swarm import AnsibleDockerSwarmClient
|
|
|
|
|
|
def get_service_info(client):
|
|
service = client.module.params['name']
|
|
return client.get_service_inspect(
|
|
service_id=service,
|
|
skip_missing=True
|
|
)
|
|
|
|
|
|
def main():
|
|
argument_spec = dict(
|
|
name=dict(type='str', required=True),
|
|
)
|
|
|
|
client = AnsibleDockerSwarmClient(
|
|
argument_spec=argument_spec,
|
|
supports_check_mode=True,
|
|
min_docker_version='2.0.0',
|
|
)
|
|
|
|
client.fail_task_if_not_swarm_manager()
|
|
|
|
try:
|
|
service = get_service_info(client)
|
|
|
|
client.module.exit_json(
|
|
changed=False,
|
|
service=service,
|
|
exists=bool(service)
|
|
)
|
|
except DockerException as e:
|
|
client.fail('An unexpected docker error occurred: {0}'.format(to_native(e)), exception=traceback.format_exc())
|
|
except RequestException as e:
|
|
client.fail(
|
|
'An unexpected requests error occurred when Docker SDK for Python tried to talk to the docker daemon: {0}'.format(to_native(e)),
|
|
exception=traceback.format_exc())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|