summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/library/oc_obj.py
diff options
context:
space:
mode:
authorTim Bielawa <tbielawa@redhat.com>2017-01-23 09:10:10 -0800
committerTim Bielawa <tbielawa@redhat.com>2017-01-24 08:19:08 -0800
commitcf5f85ff884107cfba3ac929d2f731d98f467ce0 (patch)
tree6f086121f8c4f130d92d4e09a7b6d5224e50f569 /roles/lib_openshift/library/oc_obj.py
parent14ddb400093cbfb4abeca60b7edc434fcf380315 (diff)
downloadopenshift-cf5f85ff884107cfba3ac929d2f731d98f467ce0.tar.gz
openshift-cf5f85ff884107cfba3ac929d2f731d98f467ce0.tar.bz2
openshift-cf5f85ff884107cfba3ac929d2f731d98f467ce0.tar.xz
openshift-cf5f85ff884107cfba3ac929d2f731d98f467ce0.zip
Generate the artifacts from fragments.
Diffstat (limited to 'roles/lib_openshift/library/oc_obj.py')
-rw-r--r--roles/lib_openshift/library/oc_obj.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/roles/lib_openshift/library/oc_obj.py b/roles/lib_openshift/library/oc_obj.py
index 5b501484b..ac24c35ca 100644
--- a/roles/lib_openshift/library/oc_obj.py
+++ b/roles/lib_openshift/library/oc_obj.py
@@ -24,6 +24,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
+
+# -*- -*- -*- Begin included fragment: lib/import.py -*- -*- -*-
'''
OpenShiftCLI class that wraps the oc commands in a subprocess
'''
@@ -40,6 +42,10 @@ import subprocess
import ruamel.yaml as yaml
from ansible.module_utils.basic import AnsibleModule
+# -*- -*- -*- End included fragment: lib/import.py -*- -*- -*-
+
+# -*- -*- -*- Begin included fragment: doc/obj -*- -*- -*-
+
DOCUMENTATION = '''
---
module: oc_obj
@@ -132,6 +138,10 @@ oc_obj:
namespace: default
register: router_output
'''
+
+# -*- -*- -*- End included fragment: doc/obj -*- -*- -*-
+
+# -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
# noqa: E301,E302
@@ -696,6 +706,10 @@ class Yedit(object):
'state': "present"}
return {'failed': True, 'msg': 'Unkown state passed'}
+
+# -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
+
+# -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
# pylint: disable=too-many-lines
# noqa: E301,E302,E303,T001
@@ -1217,6 +1231,10 @@ class OpenShiftCLIConfig(object):
return rval
+# -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
+
+# -*- -*- -*- Begin included fragment: class/oc_obj.py -*- -*- -*-
+
# pylint: disable=too-many-instance-attributes
class OCObject(OpenShiftCLI):
''' Class to wrap the oc command line tools '''
@@ -1408,6 +1426,10 @@ class OCObject(OpenShiftCLI):
return {'changed': True, 'results': api_rval, 'state': "present"}
+# -*- -*- -*- End included fragment: class/oc_obj.py -*- -*- -*-
+
+# -*- -*- -*- Begin included fragment: ansible/oc_obj.py -*- -*- -*-
+
# pylint: disable=too-many-branches
def main():
'''
@@ -1442,3 +1464,5 @@ def main():
if __name__ == '__main__':
main()
+
+# -*- -*- -*- End included fragment: ansible/oc_obj.py -*- -*- -*-