Correct pod's name for cleanup 28/70328/1
authorMarco Platania <platania@research.att.com>
Fri, 12 Oct 2018 02:48:58 +0000 (22:48 -0400)
committerMarco Platania <platania@research.att.com>
Fri, 12 Oct 2018 02:48:58 +0000 (22:48 -0400)
Change-Id: Iae655f216204bc7103a1b0859a58b8469393db56
Issue-ID: INT-586
Signed-off-by: Marco Platania <platania@research.att.com>
deployment/heat/onap-oom/scripts/cleanup.sh

index 03bcd17..b6583f4 100644 (file)
@@ -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