From f91ad496b5b06c1a4c41438235f519cfed3387fe Mon Sep 17 00:00:00 2001 From: Nitin Goyal Date: Thu, 14 Nov 2024 17:54:55 +0530 Subject: [PATCH] hack: increase csv verification timeout in install script Signed-off-by: Nitin Goyal --- hack/install-odf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/install-odf.sh b/hack/install-odf.sh index 7158d0561..cec324563 100755 --- a/hack/install-odf.sh +++ b/hack/install-odf.sh @@ -20,7 +20,7 @@ fi "$OPERATOR_SDK" run bundle "$BUNDLE_IMG" --timeout=10m --security-context-config restricted -n "$INSTALL_NAMESPACE" --index-image "$CATALOG_DEPS_IMG" -oc wait --timeout=5m --for jsonpath='{.status.phase}'=Succeeded -n "$INSTALL_NAMESPACE" csv $CSV_NAMES || { +oc wait --timeout=10m --for jsonpath='{.status.phase}'=Succeeded -n "$INSTALL_NAMESPACE" csv $CSV_NAMES || { echo "CSV $CSV_NAMES did not succeed, describing CSV" oc get csv -n "$INSTALL_NAMESPACE"