aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/heat/onap-oom/scripts/cleanup.sh
blob: 03bcd170ecc7309e8c94758e71bf1761dd6312d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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