diff --git a/test/addons/ocm-cluster/test b/test/addons/ocm-cluster/test index 53c226924..2c95a438a 100755 --- a/test/addons/ocm-cluster/test +++ b/test/addons/ocm-cluster/test @@ -21,7 +21,7 @@ def wait_for_work(cluster, hub): "manifestwork/example-manifestwork", "--for=condition=applied", f"--namespace={cluster}", - "--timeout=60s", + "--timeout=120s", context=hub, ) @@ -32,7 +32,7 @@ def wait_for_deployment(cluster, hub): "manifestwork/example-manifestwork", "--for=condition=available", f"--namespace={cluster}", - "--timeout=60s", + "--timeout=120s", context=hub, ) @@ -40,7 +40,7 @@ def wait_for_deployment(cluster, hub): kubectl.wait( "deploy/example-deployment", "--for=condition=available", - "--timeout=60s", + "--timeout=120s", context=cluster, ) @@ -56,7 +56,7 @@ def wait_for_delete_work(cluster, hub): "manifestwork/example-manifestwork", "--for=delete", f"--namespace={cluster}", - "--timeout=60s", + "--timeout=120s", context=hub, ) @@ -66,7 +66,7 @@ def wait_for_delete_deployment(cluster): kubectl.wait( "deploy/example-deployment", "--for=delete", - "--timeout=60s", + "--timeout=120s", context=cluster, ) diff --git a/test/addons/rook-pool/start b/test/addons/rook-pool/start index 9efce1aee..0f3fefe2f 100755 --- a/test/addons/rook-pool/start +++ b/test/addons/rook-pool/start @@ -25,7 +25,7 @@ def wait(cluster): "cephblockpool/replicapool", output="jsonpath={.status.phase}", namespace="rook-ceph", - timeout=60, + timeout=120, profile=cluster, ) kubectl.wait( diff --git a/test/addons/velero/test b/test/addons/velero/test index a10c81515..4a76253e6 100755 --- a/test/addons/velero/test +++ b/test/addons/velero/test @@ -47,7 +47,7 @@ def test(cluster): "status", "deploy/nginx-deployment", "--namespace=nginx-example", - "--timeout=60s", + "--timeout=120s", context=cluster, )