瀏覽代碼

Update lib_openshift doc strings to reflect module name

This commit adds each module's name to the docstring
so they are easier to find with grep/IDE.
Michael Gugino 6 年之前
父節點
當前提交
a3dfa90c95
共有 58 個文件被更改,包括 59 次插入63 次删除
  1. 1 1
      roles/lib_openshift/library/oc_adm_ca_server_cert.py
  2. 1 2
      roles/lib_openshift/library/oc_adm_csr.py
  3. 1 1
      roles/lib_openshift/library/oc_adm_manage_node.py
  4. 1 1
      roles/lib_openshift/library/oc_adm_policy_group.py
  5. 1 1
      roles/lib_openshift/library/oc_adm_policy_user.py
  6. 2 2
      roles/lib_openshift/library/oc_adm_registry.py
  7. 1 1
      roles/lib_openshift/library/oc_adm_router.py
  8. 1 1
      roles/lib_openshift/library/oc_clusterrole.py
  9. 1 1
      roles/lib_openshift/library/oc_configmap.py
  10. 1 1
      roles/lib_openshift/library/oc_edit.py
  11. 1 1
      roles/lib_openshift/library/oc_env.py
  12. 1 1
      roles/lib_openshift/library/oc_group.py
  13. 1 1
      roles/lib_openshift/library/oc_image.py
  14. 1 1
      roles/lib_openshift/library/oc_label.py
  15. 1 1
      roles/lib_openshift/library/oc_obj.py
  16. 1 1
      roles/lib_openshift/library/oc_objectvalidator.py
  17. 1 2
      roles/lib_openshift/library/oc_process.py
  18. 1 1
      roles/lib_openshift/library/oc_project.py
  19. 1 1
      roles/lib_openshift/library/oc_pvc.py
  20. 1 1
      roles/lib_openshift/library/oc_route.py
  21. 1 1
      roles/lib_openshift/library/oc_scale.py
  22. 1 1
      roles/lib_openshift/library/oc_secret.py
  23. 1 1
      roles/lib_openshift/library/oc_service.py
  24. 1 1
      roles/lib_openshift/library/oc_serviceaccount.py
  25. 1 1
      roles/lib_openshift/library/oc_serviceaccount_secret.py
  26. 1 1
      roles/lib_openshift/library/oc_storageclass.py
  27. 1 1
      roles/lib_openshift/library/oc_user.py
  28. 1 1
      roles/lib_openshift/library/oc_version.py
  29. 1 1
      roles/lib_openshift/library/oc_volume.py
  30. 1 1
      roles/lib_openshift/src/class/oc_adm_ca_server_cert.py
  31. 1 2
      roles/lib_openshift/src/class/oc_adm_csr.py
  32. 1 1
      roles/lib_openshift/src/class/oc_adm_manage_node.py
  33. 1 1
      roles/lib_openshift/src/class/oc_adm_policy_group.py
  34. 1 1
      roles/lib_openshift/src/class/oc_adm_policy_user.py
  35. 1 1
      roles/lib_openshift/src/class/oc_adm_registry.py
  36. 1 1
      roles/lib_openshift/src/class/oc_adm_router.py
  37. 1 1
      roles/lib_openshift/src/class/oc_clusterrole.py
  38. 1 1
      roles/lib_openshift/src/class/oc_configmap.py
  39. 1 1
      roles/lib_openshift/src/class/oc_edit.py
  40. 1 1
      roles/lib_openshift/src/class/oc_env.py
  41. 1 1
      roles/lib_openshift/src/class/oc_group.py
  42. 1 1
      roles/lib_openshift/src/class/oc_image.py
  43. 1 1
      roles/lib_openshift/src/class/oc_label.py
  44. 1 1
      roles/lib_openshift/src/class/oc_obj.py
  45. 1 1
      roles/lib_openshift/src/class/oc_objectvalidator.py
  46. 1 2
      roles/lib_openshift/src/class/oc_process.py
  47. 1 1
      roles/lib_openshift/src/class/oc_project.py
  48. 1 1
      roles/lib_openshift/src/class/oc_pvc.py
  49. 1 1
      roles/lib_openshift/src/class/oc_route.py
  50. 1 1
      roles/lib_openshift/src/class/oc_scale.py
  51. 1 1
      roles/lib_openshift/src/class/oc_secret.py
  52. 1 1
      roles/lib_openshift/src/class/oc_service.py
  53. 1 1
      roles/lib_openshift/src/class/oc_serviceaccount.py
  54. 1 1
      roles/lib_openshift/src/class/oc_serviceaccount_secret.py
  55. 1 1
      roles/lib_openshift/src/class/oc_storageclass.py
  56. 1 1
      roles/lib_openshift/src/class/oc_user.py
  57. 1 1
      roles/lib_openshift/src/class/oc_version.py
  58. 1 1
      roles/lib_openshift/src/class/oc_volume.py

+ 1 - 1
roles/lib_openshift/library/oc_adm_ca_server_cert.py

@@ -1584,7 +1584,7 @@ class CAServerCert(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_ca_server_cert module'''
 
         # Filter non-strings from hostnames list (Such as boolean: False)
         params['hostnames'] = [host for host in params['hostnames'] if isinstance(host, string_types)]

+ 1 - 2
roles/lib_openshift/library/oc_adm_csr.py

@@ -1617,7 +1617,7 @@ class OCcsr(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_csr module'''
 
         client = OCcsr(params['nodes'],
                        params['approve_all'],
@@ -1677,7 +1677,6 @@ class OCcsr(OpenShiftCLI):
         return {'failed': True,
                 'msg': 'Unknown state passed. %s' % state}
 
-
 # -*- -*- -*- End included fragment: class/oc_adm_csr.py -*- -*- -*-
 
 # -*- -*- -*- Begin included fragment: ansible/oc_adm_csr.py -*- -*- -*-

+ 1 - 1
roles/lib_openshift/library/oc_adm_manage_node.py

@@ -1648,7 +1648,7 @@ class ManageNode(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_manage_node module'''
         nconfig = ManageNodeConfig(params['kubeconfig'],
                                    {'node': {'value': params['node'], 'include': True},
                                     'selector': {'value': params['selector'], 'include': True},

+ 1 - 1
roles/lib_openshift/library/oc_adm_policy_group.py

@@ -2132,7 +2132,7 @@ class PolicyGroup(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_policy_group module'''
 
         state = params['state']
 

+ 1 - 1
roles/lib_openshift/library/oc_adm_policy_user.py

@@ -2143,7 +2143,7 @@ class PolicyUser(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_policy_user module'''
 
         state = params['state']
 

+ 2 - 2
roles/lib_openshift/library/oc_adm_registry.py

@@ -2313,7 +2313,7 @@ class OCVersion(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params):
-        '''run the idempotent ansible code'''
+        '''run the oc_version module'''
         oc_version = OCVersion(params['kubeconfig'], params['debug'])
 
         if params['state'] == 'list':
@@ -2656,7 +2656,7 @@ class Registry(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run idempotent ansible code'''
+        '''run the oc_adm_registry module'''
 
         registry_options = {'images': {'value': params['images'], 'include': True},
                             'latest_images': {'value': params['latest_images'], 'include': True},

+ 1 - 1
roles/lib_openshift/library/oc_adm_router.py

@@ -3060,7 +3060,7 @@ class Router(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run ansible idempotent code'''
+        '''run the oc_adm_router module'''
 
         rconfig = RouterConfig(params['name'],
                                params['namespace'],

+ 1 - 1
roles/lib_openshift/library/oc_clusterrole.py

@@ -1752,7 +1752,7 @@ class OCClusterRole(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_clusterrole module'''
 
         oc_clusterrole = OCClusterRole(params['name'],
                                        params['rules'],

+ 1 - 1
roles/lib_openshift/library/oc_configmap.py

@@ -1565,7 +1565,7 @@ class OCConfigMap(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_configmap module'''
 
         oc_cm = OCConfigMap(params['name'],
                             params['from_file'],

+ 1 - 1
roles/lib_openshift/library/oc_edit.py

@@ -1568,7 +1568,7 @@ class Edit(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_edit module'''
 
         ocedit = Edit(params['kind'],
                       params['namespace'],

+ 1 - 1
roles/lib_openshift/library/oc_env.py

@@ -1897,7 +1897,7 @@ class OCEnv(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_env module'''
 
         ocenv = OCEnv(params['namespace'],
                       params['kind'],

+ 1 - 1
roles/lib_openshift/library/oc_group.py

@@ -1547,7 +1547,7 @@ class OCGroup(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''run the idempotent ansible code'''
+        '''run the oc_group module'''
 
         gconfig = GroupConfig(params['name'],
                               params['namespace'],

+ 1 - 1
roles/lib_openshift/library/oc_image.py

@@ -1503,7 +1503,7 @@ class OCImage(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        ''' run the ansible idempotent code '''
+        ''' run the oc_image module'''
 
         ocimage = OCImage(params['namespace'],
                           params['registry_url'],

+ 1 - 1
roles/lib_openshift/library/oc_label.py

@@ -1672,7 +1672,7 @@ class OCLabel(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode=False):
-        ''' run the idempotent ansible code
+        ''' run the oc_label module
 
             prams comes from the ansible portion of this module
             check_mode: does the module support check mode. (module.check_mode)

+ 1 - 1
roles/lib_openshift/library/oc_obj.py

@@ -1597,7 +1597,7 @@ class OCObject(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''perform the ansible idempotent code'''
+        '''run the oc_obj module'''
 
         ocobj = OCObject(params['kind'],
                          params['namespace'],

+ 1 - 1
roles/lib_openshift/library/oc_objectvalidator.py

@@ -1438,7 +1438,7 @@ class OCObjectValidator(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params):
-        ''' run the idempotent ansible code
+        ''' run the oc_objectvalidator module
 
             params comes from the ansible portion of this module
         '''

+ 1 - 2
roles/lib_openshift/library/oc_process.py

@@ -1591,7 +1591,7 @@ class OCProcess(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_process module'''
 
         ocprocess = OCProcess(params['namespace'],
                               params['template_name'],
@@ -1656,7 +1656,6 @@ class OCProcess(OpenShiftCLI):
 
         return {"changed": update, "results": rval, "state": state}
 
-
 # -*- -*- -*- End included fragment: class/oc_process.py -*- -*- -*-
 
 # -*- -*- -*- Begin included fragment: ansible/oc_process.py -*- -*- -*-

+ 1 - 1
roles/lib_openshift/library/oc_project.py

@@ -1652,7 +1652,7 @@ class OCProject(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_project module'''
 
         node_selector = None
         if params['node_selector'] is not None:

+ 1 - 1
roles/lib_openshift/library/oc_pvc.py

@@ -1778,7 +1778,7 @@ class OCPVC(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_pvc module'''
         pconfig = PersistentVolumeClaimConfig(params['name'],
                                               params['namespace'],
                                               params['kubeconfig'],

+ 1 - 1
roles/lib_openshift/library/oc_route.py

@@ -1746,7 +1746,7 @@ class OCRoute(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode=False):
-        ''' run the idempotent asnible code
+        ''' run the oc_route module
 
             params comes from the ansible portion for this module
             files: a dictionary for the certificates

+ 1 - 1
roles/lib_openshift/library/oc_scale.py

@@ -1896,7 +1896,7 @@ class OCScale(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''perform the idempotent ansible logic'''
+        '''run the oc_scale module'''
 
         oc_scale = OCScale(params['name'],
                            params['namespace'],

+ 1 - 1
roles/lib_openshift/library/oc_secret.py

@@ -1723,7 +1723,7 @@ class OCSecret(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_secret module'''
 
         ocsecret = OCSecret(params['namespace'],
                             params['name'],

+ 1 - 1
roles/lib_openshift/library/oc_service.py

@@ -1807,7 +1807,7 @@ class OCService(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode):
-        '''Run the idempotent ansible code'''
+        '''Run the oc_service module'''
         oc_svc = OCService(params['name'],
                            params['namespace'],
                            params['labels'],

+ 1 - 1
roles/lib_openshift/library/oc_serviceaccount.py

@@ -1669,7 +1669,7 @@ class OCServiceAccount(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_serviceaccount module'''
 
         rconfig = ServiceAccountConfig(params['name'],
                                        params['namespace'],

+ 1 - 1
roles/lib_openshift/library/oc_serviceaccount_secret.py

@@ -1657,7 +1657,7 @@ class OCServiceAccountSecret(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        ''' run the ansible idempotent code '''
+        ''' run the oc_serviceaccount_secret module'''
 
         sconfig = ServiceAccountConfig(params['service_account'],
                                        params['namespace'],

+ 1 - 1
roles/lib_openshift/library/oc_storageclass.py

@@ -1622,7 +1622,7 @@ class OCStorageClass(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_storageclass module'''
 
         # Make sure that the provisioner is fully qualified before using it
         # E.g. if 'aws-efs' is provided as a provisioner, convert it to 'kubernetes.io/aws-efs'

+ 1 - 1
roles/lib_openshift/library/oc_user.py

@@ -1695,7 +1695,7 @@ class OCUser(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode=False):
-        ''' run the idempotent ansible code
+        ''' run the oc_user module
 
             params comes from the ansible portion of this module
             check_mode: does the module support check mode. (module.check_mode)

+ 1 - 1
roles/lib_openshift/library/oc_version.py

@@ -1464,7 +1464,7 @@ class OCVersion(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params):
-        '''run the idempotent ansible code'''
+        '''run the oc_version module'''
         oc_version = OCVersion(params['kubeconfig'], params['debug'])
 
         if params['state'] == 'list':

+ 1 - 1
roles/lib_openshift/library/oc_volume.py

@@ -2005,7 +2005,7 @@ class OCVolume(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''run the idempotent ansible code'''
+        '''run the oc_volume module'''
         oc_volume = OCVolume(params['kind'],
                              params['name'],
                              params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_ca_server_cert.py

@@ -93,7 +93,7 @@ class CAServerCert(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_ca_server_cert module'''
 
         # Filter non-strings from hostnames list (Such as boolean: False)
         params['hostnames'] = [host for host in params['hostnames'] if isinstance(host, string_types)]

+ 1 - 2
roles/lib_openshift/src/class/oc_adm_csr.py

@@ -148,7 +148,7 @@ class OCcsr(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_csr module'''
 
         client = OCcsr(params['nodes'],
                        params['approve_all'],
@@ -207,4 +207,3 @@ class OCcsr(OpenShiftCLI):
 
         return {'failed': True,
                 'msg': 'Unknown state passed. %s' % state}
-

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_manage_node.py

@@ -171,7 +171,7 @@ class ManageNode(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_manage_node module'''
         nconfig = ManageNodeConfig(params['kubeconfig'],
                                    {'node': {'value': params['node'], 'include': True},
                                     'selector': {'value': params['selector'], 'include': True},

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_policy_group.py

@@ -158,7 +158,7 @@ class PolicyGroup(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_policy_group module'''
 
         state = params['state']
 

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_policy_user.py

@@ -155,7 +155,7 @@ class PolicyUser(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_adm_policy_user module'''
 
         state = params['state']
 

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_registry.py

@@ -329,7 +329,7 @@ class Registry(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run idempotent ansible code'''
+        '''run the oc_adm_registry module'''
 
         registry_options = {'images': {'value': params['images'], 'include': True},
                             'latest_images': {'value': params['latest_images'], 'include': True},

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_router.py

@@ -395,7 +395,7 @@ class Router(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run ansible idempotent code'''
+        '''run the oc_adm_router module'''
 
         rconfig = RouterConfig(params['name'],
                                params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_clusterrole.py

@@ -81,7 +81,7 @@ class OCClusterRole(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_clusterrole module'''
 
         oc_clusterrole = OCClusterRole(params['name'],
                                        params['rules'],

+ 1 - 1
roles/lib_openshift/src/class/oc_configmap.py

@@ -104,7 +104,7 @@ class OCConfigMap(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_configmap module'''
 
         oc_cm = OCConfigMap(params['name'],
                             params['from_file'],

+ 1 - 1
roles/lib_openshift/src/class/oc_edit.py

@@ -57,7 +57,7 @@ class Edit(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_edit module'''
 
         ocedit = Edit(params['kind'],
                       params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_env.py

@@ -73,7 +73,7 @@ class OCEnv(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_env module'''
 
         ocenv = OCEnv(params['namespace'],
                       params['kind'],

+ 1 - 1
roles/lib_openshift/src/class/oc_group.py

@@ -64,7 +64,7 @@ class OCGroup(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''run the idempotent ansible code'''
+        '''run the oc_group module'''
 
         gconfig = GroupConfig(params['name'],
                               params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_image.py

@@ -39,7 +39,7 @@ class OCImage(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        ''' run the ansible idempotent code '''
+        ''' run the oc_image module'''
 
         ocimage = OCImage(params['namespace'],
                           params['registry_url'],

+ 1 - 1
roles/lib_openshift/src/class/oc_label.py

@@ -191,7 +191,7 @@ class OCLabel(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode=False):
-        ''' run the idempotent ansible code
+        ''' run the oc_label module
 
             prams comes from the ansible portion of this module
             check_mode: does the module support check mode. (module.check_mode)

+ 1 - 1
roles/lib_openshift/src/class/oc_obj.py

@@ -107,7 +107,7 @@ class OCObject(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''perform the ansible idempotent code'''
+        '''run the oc_obj module'''
 
         ocobj = OCObject(params['kind'],
                          params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_objectvalidator.py

@@ -22,7 +22,7 @@ class OCObjectValidator(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params):
-        ''' run the idempotent ansible code
+        ''' run the oc_objectvalidator module
 
             params comes from the ansible portion of this module
         '''

+ 1 - 2
roles/lib_openshift/src/class/oc_process.py

@@ -118,7 +118,7 @@ class OCProcess(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_process module'''
 
         ocprocess = OCProcess(params['namespace'],
                               params['template_name'],
@@ -182,4 +182,3 @@ class OCProcess(OpenShiftCLI):
                 return {"failed": True, "changed": update, "msg": rval, "state": state}
 
         return {"changed": update, "results": rval, "state": state}
-

+ 1 - 1
roles/lib_openshift/src/class/oc_project.py

@@ -95,7 +95,7 @@ class OCProject(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_project module'''
 
         node_selector = None
         if params['node_selector'] is not None:

+ 1 - 1
roles/lib_openshift/src/class/oc_pvc.py

@@ -82,7 +82,7 @@ class OCPVC(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''run the idempotent ansible code'''
+        '''run the oc_pvc module'''
         pconfig = PersistentVolumeClaimConfig(params['name'],
                                               params['namespace'],
                                               params['kubeconfig'],

+ 1 - 1
roles/lib_openshift/src/class/oc_route.py

@@ -82,7 +82,7 @@ class OCRoute(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode=False):
-        ''' run the idempotent asnible code
+        ''' run the oc_route module
 
             params comes from the ansible portion for this module
             files: a dictionary for the certificates

+ 1 - 1
roles/lib_openshift/src/class/oc_scale.py

@@ -62,7 +62,7 @@ class OCScale(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode):
-        '''perform the idempotent ansible logic'''
+        '''run the oc_scale module'''
 
         oc_scale = OCScale(params['name'],
                            params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_secret.py

@@ -100,7 +100,7 @@ class OCSecret(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_secret module'''
 
         ocsecret = OCSecret(params['namespace'],
                             params['name'],

+ 1 - 1
roles/lib_openshift/src/class/oc_service.py

@@ -90,7 +90,7 @@ class OCService(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     @staticmethod
     def run_ansible(params, check_mode):
-        '''Run the idempotent ansible code'''
+        '''Run the oc_service module'''
         oc_svc = OCService(params['name'],
                            params['namespace'],
                            params['labels'],

+ 1 - 1
roles/lib_openshift/src/class/oc_serviceaccount.py

@@ -81,7 +81,7 @@ class OCServiceAccount(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_serviceaccount module'''
 
         rconfig = ServiceAccountConfig(params['name'],
                                        params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_serviceaccount_secret.py

@@ -69,7 +69,7 @@ class OCServiceAccountSecret(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        ''' run the ansible idempotent code '''
+        ''' run the oc_serviceaccount_secret module'''
 
         sconfig = ServiceAccountConfig(params['service_account'],
                                        params['namespace'],

+ 1 - 1
roles/lib_openshift/src/class/oc_storageclass.py

@@ -72,7 +72,7 @@ class OCStorageClass(OpenShiftCLI):
     # pylint: disable=too-many-return-statements,too-many-branches
     # TODO: This function should be refactored into its individual parts.
     def run_ansible(params, check_mode):
-        '''run the ansible idempotent code'''
+        '''run the oc_storageclass module'''
 
         # Make sure that the provisioner is fully qualified before using it
         # E.g. if 'aws-efs' is provided as a provisioner, convert it to 'kubernetes.io/aws-efs'

+ 1 - 1
roles/lib_openshift/src/class/oc_user.py

@@ -139,7 +139,7 @@ class OCUser(OpenShiftCLI):
     # pylint: disable=too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode=False):
-        ''' run the idempotent ansible code
+        ''' run the oc_user module
 
             params comes from the ansible portion of this module
             check_mode: does the module support check mode. (module.check_mode)

+ 1 - 1
roles/lib_openshift/src/class/oc_version.py

@@ -35,7 +35,7 @@ class OCVersion(OpenShiftCLI):
 
     @staticmethod
     def run_ansible(params):
-        '''run the idempotent ansible code'''
+        '''run the oc_version module'''
         oc_version = OCVersion(params['kubeconfig'], params['debug'])
 
         if params['state'] == 'list':

+ 1 - 1
roles/lib_openshift/src/class/oc_volume.py

@@ -102,7 +102,7 @@ class OCVolume(OpenShiftCLI):
     # pylint: disable=too-many-branches,too-many-return-statements
     @staticmethod
     def run_ansible(params, check_mode=False):
-        '''run the idempotent ansible code'''
+        '''run the oc_volume module'''
         oc_volume = OCVolume(params['kind'],
                              params['name'],
                              params['namespace'],