diff options
-rwxr-xr-x | deployment/heat/onap-rke/scripts/cleanup.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/deployment/heat/onap-rke/scripts/cleanup.sh b/deployment/heat/onap-rke/scripts/cleanup.sh index 7c2a1e29f..324badfb9 100755 --- a/deployment/heat/onap-rke/scripts/cleanup.sh +++ b/deployment/heat/onap-rke/scripts/cleanup.sh @@ -15,6 +15,12 @@ if [ $COMPONENT == "dcae" ] || [ $COMPONENT == "DCAE" ]; then kubectl delete service consul -n onap fi +if [ $COMPONENT == "sdc" ] || [ $COMPONENT == "SDC" ]; then + for keyspace in sdctitan sdcrepository sdcartifact sdccomponent sdcaudit; do + kubectl exec -it dev-cassandra-cassandra-0 -- cqlsh -u cassandra -p cassandra -e "drop keyspace ${keyspace}" + done +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 |