diff options
author | Marco Platania <platania@research.att.com> | 2018-10-11 22:48:58 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2018-10-11 22:48:58 -0400 |
commit | 2ed50a7f62b2bfb2511577dc06d31e57ae3ff432 (patch) | |
tree | 36806e8a915007aa53176e15f3a86e4c0e03c3df /deployment/heat/onap-oom/scripts/cleanup.sh | |
parent | c46ef514733b88bca07922e1a881cb13919e65de (diff) |
Correct pod's name for cleanup
Change-Id: Iae655f216204bc7103a1b0859a58b8469393db56
Issue-ID: INT-586
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'deployment/heat/onap-oom/scripts/cleanup.sh')
-rw-r--r-- | deployment/heat/onap-oom/scripts/cleanup.sh | 16 |
1 files changed, 8 insertions, 8 deletions
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 |