Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Cherry-Pick] increase cert-manager wait time for kubeflow-issuer to be install #632

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/e2e/utils/kubeflow_installation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down