This commit is contained in:
abikouo
2021-05-20 11:45:35 +02:00
parent 2691b0f43d
commit 3939c5304b
4 changed files with 6 additions and 5 deletions

View File

@@ -140,6 +140,7 @@ requirements:
- "kubernetes >= 12.0.0"
- "PyYAML >= 3.11"
- "jsonpatch"
- "jmespath"
'''
EXAMPLES = r'''
@@ -249,6 +250,7 @@ EXAMPLES = r'''
wait_condition:
type: Progressing
status: Unknown
reason: DeploymentPaused
# Wait for this service to have acquired an External IP
- name: Create ingress and wait for ip to be assigned

View File

@@ -52,7 +52,7 @@ requirements:
- "python >= 3.6"
- "kubernetes >= 12.0.0"
- "PyYAML >= 3.11"
- "jsonpath-rw"
- "jmespath"
'''
EXAMPLES = r'''
@@ -165,7 +165,7 @@ def execute_module(module, k8s_ansible_mixin):
wait_sleep=module.params["wait_sleep"],
wait_timeout=module.params["wait_timeout"],
condition=module.params["wait_condition"],
wait_for=module.params["wait_for"]
property=module.params["wait_property"]
)
module.exit_json(changed=False, **facts)

View File

@@ -34,7 +34,6 @@ requirements:
- "python >= 3.6"
- "kubernetes >= 12.0.0"
- "PyYAML >= 3.11"
- "jsonpath-rw"
'''
EXAMPLES = r'''