atomic_container 910 B

123456789101112131415161718192021222324252627282930313233343536
  1. # flake8: noqa
  2. # pylint: skip-file
  3. DOCUMENTATION = '''
  4. ---
  5. module: oc_atomic_container
  6. short_description: Manage the container images on the atomic host platform
  7. description:
  8. - Manage the container images on the atomic host platform
  9. - Allows to execute the commands on the container images
  10. requirements:
  11. - atomic
  12. - "python >= 2.6"
  13. options:
  14. name:
  15. description:
  16. - Name of the container
  17. required: True
  18. default: null
  19. image:
  20. description:
  21. - The image to use to install the container
  22. required: True
  23. default: null
  24. state:
  25. description:
  26. - State of the container
  27. required: True
  28. choices: ["latest", "absent", "latest", "rollback"]
  29. default: "latest"
  30. values:
  31. description:
  32. - Values for the installation of the container
  33. required: False
  34. default: None
  35. '''