aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkjaniak <kornel.janiak@nokia.com>2019-10-11 15:12:21 +0200
committerkjaniak <kornel.janiak@nokia.com>2019-10-11 15:17:56 +0200
commit076b6eedd7e1a67315593aaad9756d6cdeef9373 (patch)
treea38623e77efa20e7bc2d436d18c4799206f93f2c
parent2e334500fba9893f1f2d2ab3b9528c638d993a03 (diff)
Fix of configmap issue
Change-Id: Ia24f86ac0a516dea06b2e4d6c2d0479005864493 Issue-ID: DCAEGEN2-1783 Signed-off-by: kjaniak <kornel.janiak@nokia.com>
-rwxr-xr-xtools/performance/cloud/cloud-based-performance-test.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/performance/cloud/cloud-based-performance-test.sh b/tools/performance/cloud/cloud-based-performance-test.sh
index 937dcf3e..12daeb47 100755
--- a/tools/performance/cloud/cloud-based-performance-test.sh
+++ b/tools/performance/cloud/cloud-based-performance-test.sh
@@ -20,7 +20,6 @@
SCRIPT_DIRECTORY="$(pwd "$0")"
CONTAINERS_COUNT=1
PROPERTIES_FILE=${SCRIPT_DIRECTORY}/test.properties
-CONFIG_MAP_NAME=performance-test-config
PRODUCER_APPS_LABEL=hv-collector-producer
CONSUMER_APPS_LABEL=hv-collector-kafka-consumer
PROMETHEUS_CONF_LABEL=prometheus-server-conf
@@ -38,7 +37,7 @@ function clean() {
echo "Cleaning up environment"
echo "Attempting to delete test parameters ConfigMap"
- kubectl delete configmap ${CONFIG_MAP_NAME} -n ${ONAP_NAMESPACE}
+ kubectl delete configmap performance-test-config -n ${ONAP_NAMESPACE}
echo "Attempting to delete prometheus ConfigMap"
kubectl delete configmap -l name=${PROMETHEUS_CONF_LABEL} -n ${ONAP_NAMESPACE}
@@ -68,6 +67,10 @@ function clean() {
}
function create_producers() {
+ echo "Recreating test properties ConfigMap from: $PROPERTIES_FILE"
+ kubectl delete configmap performance-test-config -n ${ONAP_NAMESPACE}
+ kubectl create configmap performance-test-config --from-env-file=${PROPERTIES_FILE} -n ${ONAP_NAMESPACE}
+
set -e
for i in $(seq 1 ${CONTAINERS_COUNT});
do
@@ -101,7 +104,7 @@ function usage() {
function setup_environment() {
echo "Setting up environment"
echo "Creating test properties ConfigMap from: $PROPERTIES_FILE"
- kubectl create configmap ${CONFIG_MAP_NAME} --from-env-file=${PROPERTIES_FILE} -n ${ONAP_NAMESPACE}
+ kubectl create configmap performance-test-config --from-env-file=${PROPERTIES_FILE} -n ${ONAP_NAMESPACE}
echo "Creating consumer deployment"
kubectl apply -f consumer-deployment.yaml