From 50dbcfec9822cb822d2c88815ae28270aed1b2cb Mon Sep 17 00:00:00 2001 From: David Zager Date: Mon, 8 Jul 2024 16:06:42 -0400 Subject: [PATCH] :seedling: log olm + deployment when installing konveyor (#348) (#352) Signed-off-by: David Zager --- hack/install-konveyor.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hack/install-konveyor.sh b/hack/install-konveyor.sh index b995422..90f57b3 100755 --- a/hack/install-konveyor.sh +++ b/hack/install-konveyor.sh @@ -64,6 +64,7 @@ run_bundle() { # If on MacOS, need to install `brew install coreutils` to get `timeout` timeout 600s bash -c 'until kubectl get customresourcedefinitions.apiextensions.k8s.io tackles.tackle.konveyor.io; do sleep 30; done' + kubectl get clusterserviceversions.operators.coreos.com -n "${NAMESPACE}" -o yaml } install_tackle() { @@ -106,6 +107,8 @@ EOF --for=condition=Available \ --timeout=600s \ deployments.apps + + kubectl get deployments.apps -n "${NAMESPACE}" -o yaml } kubectl get customresourcedefinitions.apiextensions.k8s.io tackles.tackle.konveyor.io || run_bundle