From 65aa5fd3e0c327f314d034b887cffeeb1090044b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <post@soeren-henning.de> Date: Fri, 31 Jul 2020 13:49:07 +0200 Subject: [PATCH] Remove double workload generator creation --- execution/run_uc2.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/execution/run_uc2.sh b/execution/run_uc2.sh index 7d9c89d1d..68f592cc9 100755 --- a/execution/run_uc2.sh +++ b/execution/run_uc2.sh @@ -30,7 +30,6 @@ WL_MAX_RECORDS=150000 APPROX_NUM_SENSORS=$((4**NUM_NESTED_GROUPS)) WL_INSTANCES=$(((APPROX_NUM_SENSORS + (WL_MAX_RECORDS -1 ))/ WL_MAX_RECORDS)) -sed "s/{{NUM_NESTED_GROUPS}}/$NUM_NESTED_GROUPS/g" uc2-workload-generator/deployment.yaml | kubectl apply -f - WORKLOAD_GENERATOR_YAML=$(sed "s/{{NUM_NESTED_GROUPS}}/$NUM_NESTED_GROUPS/g; s/{{INSTANCES}}/$WL_INSTANCES/g" uc2-workload-generator/deployment.yaml) echo "$WORKLOAD_GENERATOR_YAML" | kubectl apply -f - -- GitLab