aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/heat/onap-oom/scripts/cleanup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/heat/onap-oom/scripts/cleanup.sh')
-rwxr-xr-xdeployment/heat/onap-oom/scripts/cleanup.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/deployment/heat/onap-oom/scripts/cleanup.sh b/deployment/heat/onap-oom/scripts/cleanup.sh
deleted file mode 100755
index 7c2a1e29f..000000000
--- a/deployment/heat/onap-oom/scripts/cleanup.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-IFS='
-'
-
-if [ -z $1 ]; then
- 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
-fi
-
-for op in secrets configmaps pvc pv services deployments statefulsets clusterrolebinding; do
- 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