summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/doc
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2017-02-21 15:01:51 +0100
committerGiuseppe Scrivano <gscrivan@redhat.com>2017-02-28 13:56:03 +0100
commit27c972f8c76266c8f43a9c35dbaaa041ef27ce89 (patch)
tree776bfc15b02cc193fbc45e95c233318989862194 /roles/lib_openshift/src/doc
parent1629eb0af60e14f70f942b66a6c4c37e875dabe1 (diff)
downloadopenshift-27c972f8c76266c8f43a9c35dbaaa041ef27ce89.tar.gz
openshift-27c972f8c76266c8f43a9c35dbaaa041ef27ce89.tar.bz2
openshift-27c972f8c76266c8f43a9c35dbaaa041ef27ce89.tar.xz
openshift-27c972f8c76266c8f43a9c35dbaaa041ef27ce89.zip
lib_openshift: new module atomic_container
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'roles/lib_openshift/src/doc')
-rw-r--r--roles/lib_openshift/src/doc/atomic_container36
1 files changed, 36 insertions, 0 deletions
diff --git a/roles/lib_openshift/src/doc/atomic_container b/roles/lib_openshift/src/doc/atomic_container
new file mode 100644
index 000000000..53fc40f36
--- /dev/null
+++ b/roles/lib_openshift/src/doc/atomic_container
@@ -0,0 +1,36 @@
+# 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
+'''