123456789101112131415161718192021222324252627282930313233343536 |
- # flake8: noqa
- # pylint: skip-file
- DOCUMENTATION = '''
- ---
- module: oc_atomic_container
- short_description: Manage the container images on the atomic host platform
- description:
- - Manage the container images on the atomic host platform
- - Allows to execute the commands on the container images
- requirements:
- - atomic
- - "python >= 2.6"
- options:
- name:
- description:
- - Name of the container
- required: True
- default: null
- image:
- description:
- - The image to use to install the container
- required: True
- default: null
- state:
- description:
- - State of the container
- required: True
- choices: ["latest", "absent", "latest", "rollback"]
- default: "latest"
- values:
- description:
- - Values for the installation of the container
- required: False
- default: None
- '''
|