From 8199a0e6d0ac28200fb0a990e041465800fd4f2f Mon Sep 17 00:00:00 2001 From: Titi Wangsa bin Damhore <111611+ttwd80@users.noreply.github.com> Date: Fri, 30 Aug 2024 18:32:30 -0700 Subject: [PATCH 1/2] Add sleep to reduce logging output Signed-off-by: Titi Wangsa bin Damhore --- stack/vagrant/setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/stack/vagrant/setup.sh b/stack/vagrant/setup.sh index 2187fc5..2a262af 100644 --- a/stack/vagrant/setup.sh +++ b/stack/vagrant/setup.sh @@ -71,6 +71,7 @@ helm_install_tink_stack() { trusted_proxies="" until [ "$trusted_proxies" != "" ]; do trusted_proxies=$(kubectl get nodes -o jsonpath='{.items[*].spec.podCIDR}' | tr ' ' ',') + sleep 5 done helm install tink-stack oci://ghcr.io/tinkerbell/charts/stack \ --version "$version" \ From 711db3442dcf808083e5ccf7e76b620b2b821edf Mon Sep 17 00:00:00 2001 From: Titi Wangsa bin Damhore <111611+ttwd80@users.noreply.github.com> Date: Fri, 30 Aug 2024 20:47:18 -0700 Subject: [PATCH 2/2] Update setup.sh Signed-off-by: Titi Wangsa bin Damhore --- stack/vagrant/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack/vagrant/setup.sh b/stack/vagrant/setup.sh index 2a262af..3006815 100644 --- a/stack/vagrant/setup.sh +++ b/stack/vagrant/setup.sh @@ -71,7 +71,7 @@ helm_install_tink_stack() { trusted_proxies="" until [ "$trusted_proxies" != "" ]; do trusted_proxies=$(kubectl get nodes -o jsonpath='{.items[*].spec.podCIDR}' | tr ' ' ',') - sleep 5 + sleep 5 done helm install tink-stack oci://ghcr.io/tinkerbell/charts/stack \ --version "$version" \