diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-03-23 17:31:17 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-03-23 17:31:17 -0400 |
commit | 58f11324d9f0da8975d2a45516d0aeadd1bb0971 (patch) | |
tree | a25acfec81e19c09205da39de53085f598dbdb12 /roles/lib_openshift/library | |
parent | 8cc12c32d35ae0a86f13110d6ea9bdb6a411bbc9 (diff) | |
download | openshift-58f11324d9f0da8975d2a45516d0aeadd1bb0971.tar.gz openshift-58f11324d9f0da8975d2a45516d0aeadd1bb0971.tar.bz2 openshift-58f11324d9f0da8975d2a45516d0aeadd1bb0971.tar.xz openshift-58f11324d9f0da8975d2a45516d0aeadd1bb0971.zip |
Adding namespace to doc.
Diffstat (limited to 'roles/lib_openshift/library')
-rw-r--r-- | roles/lib_openshift/library/oc_image.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/roles/lib_openshift/library/oc_image.py b/roles/lib_openshift/library/oc_image.py index f9d07715f..b7cc37264 100644 --- a/roles/lib_openshift/library/oc_image.py +++ b/roles/lib_openshift/library/oc_image.py @@ -54,7 +54,7 @@ from ansible.module_utils.basic import AnsibleModule DOCUMENTATION = ''' --- -module: oc_label +module: oc_image short_description: Create, modify, and idempotently manage openshift labels. description: - Modify openshift labels programmatically. @@ -73,6 +73,12 @@ options: required: false default: /etc/origin/master/admin.kubeconfig aliases: [] + namespace: + description: + - The namespace where this object lives + required: false + default: default + aliases: [] debug: description: - Turn on debug output. |