Remove shared keyspaces for SDC in cleanup 46/89946/1
authorYang Xu <yang.xu@futurewei.com>
Sun, 16 Jun 2019 03:59:51 +0000 (23:59 -0400)
committerYang Xu <yang.xu@futurewei.com>
Sun, 16 Jun 2019 04:00:17 +0000 (00:00 -0400)
Signed-off-by: Yang Xu <yang.xu@futurewei.com>
Issue-ID: INT-1103
Change-Id: I5194151ea6baadb455eb3e4c8d157012c6cfc371

deployment/heat/onap-rke/scripts/cleanup.sh

index 7c2a1e2..324badf 100755 (executable)
@@ -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