From 092128d77bfbf00f2b7bf2e0a165cef50c8ff86f Mon Sep 17 00:00:00 2001 From: benbierens Date: Sat, 7 Oct 2023 08:04:11 +0200 Subject: [PATCH] with working loops this time --- Tests/CodexContinuousTests/deploy-and-run.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Tests/CodexContinuousTests/deploy-and-run.sh b/Tests/CodexContinuousTests/deploy-and-run.sh index a4dc6bc..8c482f1 100644 --- a/Tests/CodexContinuousTests/deploy-and-run.sh +++ b/Tests/CodexContinuousTests/deploy-and-run.sh @@ -4,7 +4,7 @@ replication=10 echo "Deploying..." cd ../../Tools/CodexNetDeployer -for i in {0..$replication} +for i in $( seq 0 $replication) do dotnet run \ --kube-config=/opt/kubeconfig.yaml \ @@ -22,11 +22,12 @@ do --block-mi=120 \ --block-mn=10000 \ --metrics=1 \ - --check-connect=1 + --check-connect=1 \ + -y done echo "Starting tests..." cd ../../Tests/CodexContinuousTests -for i in {0..$replication} +for i in $( seq 0 $replication) do screen -d -m dotnet run \ --kube-config=/opt/kubeconfig.yaml \