From: Marco Platania Date: Fri, 12 Oct 2018 02:48:58 +0000 (-0400) Subject: Correct pod's name for cleanup X-Git-Tag: 3.0.0~191 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=2ed50a7f62b2bfb2511577dc06d31e57ae3ff432;p=integration.git Correct pod's name for cleanup Change-Id: Iae655f216204bc7103a1b0859a58b8469393db56 Issue-ID: INT-586 Signed-off-by: Marco Platania --- diff --git a/deployment/heat/onap-oom/scripts/cleanup.sh b/deployment/heat/onap-oom/scripts/cleanup.sh index 03bcd170e..b6583f4fe 100644 --- a/deployment/heat/onap-oom/scripts/cleanup.sh +++ b/deployment/heat/onap-oom/scripts/cleanup.sh @@ -4,20 +4,20 @@ IFS=' ' if [ -z $1 ]; then - echo "ONAP component name missing" - echo "Usage: ./cleanup.sh ONAP_COMPONENT_NAME" - exit 1 + echo "ONAP component name missing" + echo "Usage: ./cleanup.sh onap_component_name" + exit 1 fi COMPONENT=$1 if [ $COMPONENT == "dcae" ] || [ $COMPONENT == "DCAE" ]; then - kubectl delete service consul -n onap + kubectl delete service consul -n onap fi for op in secrets configmaps pv services deployments statefulsets; do - ARRAY=(`kubectl get $op -n onap | grep $COMPONENT | awk '{print $1}'`) - for i in ${ARRAY[*]}; do - kubectl delete $op -n onap $i - done + ARRAY=(`kubectl get $op -n onap | grep dev-$COMPONENT | awk '{print $1}'`) + for i in ${ARRAY[*]}; do + kubectl delete $op -n onap $i + done done