From 14f0ab3774b5797ce02df709ee4f7e0c8393e890 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Thu, 18 Jan 2024 16:52:02 +0100 Subject: [PATCH] just: use different ports for set/verify Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 229492a11..49a6c0c7c 100644 --- a/justfile +++ b/justfile @@ -90,13 +90,13 @@ verify: rm -rf ./{{workspace_dir}}/verify ns=$(cat ./{{workspace_dir}}/just.namespace) nix run .#kubectl-wait-ready -- $ns coordinator - kubectl -n $ns port-forward pod/port-forwarder-coordinator 1313 & + kubectl -n $ns port-forward pod/port-forwarder-coordinator 1314:1313 & PID=$! trap "kill $PID" EXIT sleep 1 t=$(date +%s) nix run .#cli -- verify \ - -c localhost:1313 \ + -c localhost:1314 \ -o ./{{workspace_dir}}/verify duration=$(( $(date +%s) - $t )) echo "Verified in $duration seconds."