mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Bump OpenShift client req to 0.4.3. Fixes openshift_scale. (#36601)
This commit is contained in:
parent
51a010a696
commit
4a8b4bb8a8
4 changed files with 6 additions and 6 deletions
|
@ -39,7 +39,7 @@ extends_documentation_fragment:
|
|||
|
||||
requirements:
|
||||
- "python >= 2.7"
|
||||
- "openshift == 0.4.1"
|
||||
- "openshift == 0.4.3"
|
||||
- "PyYAML >= 3.11"
|
||||
'''
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ extends_documentation_fragment:
|
|||
|
||||
requirements:
|
||||
- "python >= 2.7"
|
||||
- "openshift == 0.4.1"
|
||||
- "openshift == 0.4.3"
|
||||
- "PyYAML >= 3.11"
|
||||
'''
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ options:
|
|||
|
||||
requirements:
|
||||
- "python >= 2.7"
|
||||
- "openshift == 0.4.1"
|
||||
- "openshift == 0.4.3"
|
||||
- "PyYAML >= 3.11"
|
||||
'''
|
||||
|
||||
|
|
|
@ -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__':
|
||||
|
|
Loading…
Reference in a new issue