From 0cc9d29147213eb27e1f88043d27486d1ad11fb8 Mon Sep 17 00:00:00 2001 From: apostasie Date: Fri, 18 Oct 2024 13:09:33 -0700 Subject: [PATCH] Enhance debugability for kubernetes rig Signed-off-by: apostasie --- hack/build-integration-kubernetes.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hack/build-integration-kubernetes.sh b/hack/build-integration-kubernetes.sh index e41f13fcf7f..5647e4dd4f8 100755 --- a/hack/build-integration-kubernetes.sh +++ b/hack/build-integration-kubernetes.sh @@ -104,8 +104,9 @@ main(){ # Hack to get go into kind control plane exec::nerdctl rm -f go-kind 2>/dev/null || true - exec::nerdctl run -d --name go-kind golang:"$GO_VERSION" sleep Inf + exec::nerdctl run -d --quiet --name go-kind golang:"$GO_VERSION" sleep Inf exec::nerdctl cp go-kind:/usr/local/go /tmp/go + exec::nerdctl rm -f go-kind # Create fresh cluster log::info "Creating new cluster"