mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-28 05:11:25 -07:00
Rename return of docker_compose. (#54171)
This commit is contained in:
parent
bcbcd209f4
commit
752db43b2d
3 changed files with 8 additions and 7 deletions
|
@ -302,7 +302,7 @@ EXAMPLES = '''
|
|||
'''
|
||||
|
||||
RETURN = '''
|
||||
service_facts:
|
||||
services:
|
||||
description:
|
||||
- A dictionary mapping the service's name to a dictionary of containers.
|
||||
- Note that facts are part of the registered vars since Ansible 2.8. For compatibility reasons, the facts
|
||||
|
@ -686,7 +686,7 @@ class ContainerManager(DockerBaseClass):
|
|||
start_deps = self.dependencies
|
||||
service_names = self.services
|
||||
detached = True
|
||||
result = dict(changed=False, actions=[], ansible_facts=dict(), service_facts=dict())
|
||||
result = dict(changed=False, actions=[], ansible_facts=dict(), services=dict())
|
||||
|
||||
up_options = {
|
||||
u'--no-recreate': False,
|
||||
|
@ -772,7 +772,7 @@ class ContainerManager(DockerBaseClass):
|
|||
for service in self.project.services:
|
||||
service_facts = dict()
|
||||
result['ansible_facts'][service.name] = service_facts
|
||||
result['service_facts'][service.name] = service_facts
|
||||
result['services'][service.name] = service_facts
|
||||
for container in service.containers(stopped=True):
|
||||
inspection = container.inspect()
|
||||
# pare down the inspection data to the most useful bits
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue