From 6dff25b5555934172e4955f76200ded079f4b52b Mon Sep 17 00:00:00 2001 From: Jaromir Wysoglad Date: Tue, 30 Apr 2024 04:24:50 -0400 Subject: [PATCH] [zuul] Bump COO install timeout I can still see errors with COO install timing out even with 50s timeout. I saw a successful PR, where it took 30s for the CSV to appear. This PR bumps the timeout to 200s. --- ci/create-coo-subscription.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/create-coo-subscription.yaml b/ci/create-coo-subscription.yaml index adeba211..b046d3ff 100644 --- a/ci/create-coo-subscription.yaml +++ b/ci/create-coo-subscription.yaml @@ -29,8 +29,8 @@ ansible.builtin.command: cmd: oc get csv --namespace=openshift-operators -l operators.coreos.com/cluster-observability-operator.openshift-operators - delay: 5 - retries: 10 + delay: 10 + retries: 20 register: output until: output.stdout_lines | length != 0