From a61deb736c0a11f7f6709329026ed1bcc70bc850 Mon Sep 17 00:00:00 2001 From: David Lyle Date: Wed, 28 Aug 2019 13:28:08 -0600 Subject: [PATCH] Fix array declaration Used as associative array, not declared that way. The result was indexing errors. --- metrics/scaling/k8s_scale.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics/scaling/k8s_scale.sh b/metrics/scaling/k8s_scale.sh index 0561e0c..93ffd70 100755 --- a/metrics/scaling/k8s_scale.sh +++ b/metrics/scaling/k8s_scale.sh @@ -36,7 +36,7 @@ TEST_ARGS="runtime=${RUNTIME}" TEST_NAME="k8s scaling" declare -a new_pods -declare -a node_basemem +declare -A node_basemem # $1 is the launch time in seconds this pod/container took to start up. # $2 is the number of pod/containers under test