blob: 33ecb320e50d7a322d893a1272c2de0449e322c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#!/bin/bash
. $(dirname "$0")/setenv.bash
delete_namespace() {
_NS=$1-$2
kubectl delete namespace $_NS
printf "Waiting for namespace $_NS termination...\n"
while kubectl get namespaces $_NS > /dev/null 2>&1; do
sleep 2
done
printf "Namespace $_NS deleted.\n\n"
}
delete_registry_key() {
kubectl --namespace $1-$2 delete secret ${1}-docker-registry-key
}
delete_app_helm() {
helm delete $1 --purge
}
usage() {
cat <<EOF
Usage: $0 [PARAMs]
-u : Display usage
-n [NAMESPACE] : Kubernetes namespace (required)
-a [APP] : Specify a specific ONAP component (default: all)
from the following choices:
sdc, aai ,mso, message-router, robot,
vid, sdnc, portal, policy, appc
EOF
}
#MAINs
NS=
INCL_SVC=false
APP=
while getopts ":n:u:s:a:" PARAM; do
case $PARAM in
u)
usage
exit 1
;;
n)
NS=${OPTARG}
;;
a)
APP=${OPTARG}
if [[ -z $APP ]]; then
usage
exit 1
fi
;;
?)
usage
exit
;;
esac
done
if [[ -z $NS ]]; then
usage
exit 1
fi
if [[ ! -z "$APP" ]]; then
HELM_APPS=($APP)
fi
printf "\n********** Cleaning up ONAP: ${ONAP_APPS[*]}\n"
for i in ${HELM_APPS[@]}; do
delete_app_helm $i
delete_namespace $NS $i
done
printf "\n********** Gone **********\n"
|