Cleanup Helm leftover 66/69866/1
authorMarco Platania <platania@research.att.com>
Thu, 4 Oct 2018 21:59:57 +0000 (17:59 -0400)
committerMarco Platania <platania@research.att.com>
Thu, 4 Oct 2018 21:59:57 +0000 (17:59 -0400)
- Script that cleans up resources that Helm may leave behind

Change-Id: If0fcefa28eb6af0a5b51bbe8672bfcc7a34a4c45
Issue-ID: INT-586
Signed-off-by: Marco Platania <platania@research.att.com>
deployment/heat/onap-oom/scripts/cleanup.sh [new file with mode: 0644]

diff --git a/deployment/heat/onap-oom/scripts/cleanup.sh b/deployment/heat/onap-oom/scripts/cleanup.sh
new file mode 100644 (file)
index 0000000..03bcd17
--- /dev/null
@@ -0,0 +1,23 @@
+#!/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 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
+done