diff options
Diffstat (limited to 'deployment/heat/onap-oom/scripts')
-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 |