diff --git a/lib/ansible/modules/clustering/k8s/k8s_raw.py b/lib/ansible/modules/clustering/k8s/k8s_raw.py index 5f574bb2156..ff54c678066 100644 --- a/lib/ansible/modules/clustering/k8s/k8s_raw.py +++ b/lib/ansible/modules/clustering/k8s/k8s_raw.py @@ -39,7 +39,7 @@ extends_documentation_fragment: requirements: - "python >= 2.7" - - "openshift == 0.4.1" + - "openshift == 0.4.3" - "PyYAML >= 3.11" ''' diff --git a/lib/ansible/modules/clustering/k8s/k8s_scale.py b/lib/ansible/modules/clustering/k8s/k8s_scale.py index c4603fff223..5fb3dec414b 100644 --- a/lib/ansible/modules/clustering/k8s/k8s_scale.py +++ b/lib/ansible/modules/clustering/k8s/k8s_scale.py @@ -35,7 +35,7 @@ extends_documentation_fragment: requirements: - "python >= 2.7" - - "openshift == 0.4.1" + - "openshift == 0.4.3" - "PyYAML >= 3.11" ''' diff --git a/lib/ansible/modules/clustering/openshift/openshift_raw.py b/lib/ansible/modules/clustering/openshift/openshift_raw.py index 52a56a668b3..bf39917d111 100644 --- a/lib/ansible/modules/clustering/openshift/openshift_raw.py +++ b/lib/ansible/modules/clustering/openshift/openshift_raw.py @@ -49,7 +49,7 @@ options: requirements: - "python >= 2.7" - - "openshift == 0.4.1" + - "openshift == 0.4.3" - "PyYAML >= 3.11" ''' diff --git a/lib/ansible/modules/clustering/openshift/openshift_scale.py b/lib/ansible/modules/clustering/openshift/openshift_scale.py index b1400ad5352..e8e3dd26d95 100644 --- a/lib/ansible/modules/clustering/openshift/openshift_scale.py +++ b/lib/ansible/modules/clustering/openshift/openshift_scale.py @@ -35,7 +35,7 @@ extends_documentation_fragment: requirements: - "python >= 2.7" - - "openshift == 0.4.1" + - "openshift == 0.4.3" - "PyYAML >= 3.11" ''' @@ -116,11 +116,11 @@ result: type: complex ''' -from ansible.module_utils.k8s.scale import KubernetesAnsibleScaleModule +from ansible.module_utils.k8s.scale import OpenShiftAnsibleScaleModule def main(): - KubernetesAnsibleScaleModule().execute_module() + OpenShiftAnsibleScaleModule().execute_module() if __name__ == '__main__':