docker_info.py 680 B

123456789101112131415161718192021222324
  1. """
  2. Ansible module for determining information about the docker host.
  3. While there are several ansible modules that make use of the docker
  4. api to expose container and image facts in a remote host, they
  5. are unable to return specific information about the host machine
  6. itself. This module exposes the same information obtained through
  7. executing the `docker info` command on a docker host, in json format.
  8. """
  9. from ansible.module_utils.docker_common import AnsibleDockerClient
  10. def main():
  11. """Entrypoint for running an Ansible module."""
  12. client = AnsibleDockerClient()
  13. client.module.exit_json(
  14. info=client.info(),
  15. )
  16. if __name__ == '__main__':
  17. main()