From 8a2eefed0924358819ee42830f0dc3eb2c43548f Mon Sep 17 00:00:00 2001 From: Wenjin Situ Date: Fri, 3 Mar 2023 10:43:19 -0800 Subject: [PATCH] increase cert-manager wait time for kubeflow-issuer to be install --- tests/e2e/utils/kubeflow_installation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/e2e/utils/kubeflow_installation.py b/tests/e2e/utils/kubeflow_installation.py index d5218e07f4..50e89e38ed 100644 --- a/tests/e2e/utils/kubeflow_installation.py +++ b/tests/e2e/utils/kubeflow_installation.py @@ -132,12 +132,12 @@ def install_component( else: apply_kustomize(kustomize_path) # TO DO: Debug and add additional validation step for cert-manager resources in future for kubeflow-issuer to be installed - # temporary solution to wait for 30s + # temporary solution to wait for 60s if component_name == "cert-manager": print( - "wait for 30s for cert-manager-webhook resource to be ready..." + "wait for 60s for cert-manager-webhook resource to be ready..." ) - time.sleep(30) + time.sleep(60) if "validations" in installation_config[component_name]: validate_component_installation(installation_config, component_name)