From 636e8cccea3f4dcca5ef1791377ac5d57088fef5 Mon Sep 17 00:00:00 2001 From: dyn Date: Wed, 17 Dec 2025 23:32:58 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20chore(bonus):=20a=20little=20bit?= =?UTF-8?q?=20of=20fixing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: dyn --- bonus/scripts/argo-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bonus/scripts/argo-install.sh b/bonus/scripts/argo-install.sh index e7bbf0a..4467003 100755 --- a/bonus/scripts/argo-install.sh +++ b/bonus/scripts/argo-install.sh @@ -1,5 +1,7 @@ #!/usr/bin/env sh +set -x + k3d cluster create inception-of-things # Setup a metrics-server to prevent dumb errors @@ -43,6 +45,7 @@ kubectl apply -n argocd -f "$SCRIPT_DIR/../confs/argocd-app.yml" echo '>' echo '> App is starting (this takes around ~30 seconds)...' echo '>' +sleep 2 # THIS SLEEP IS REQUIRED, IT BREAKS WITHOUT IT, TRUST -kiroussa kubectl wait --namespace dev \ --for=condition=ready pod \ --selector=app=app-p3 \