From: Yang Xu Date: Mon, 17 Jun 2019 02:52:41 +0000 (-0400) Subject: Remove mariadb shared databases in cleanup script X-Git-Tag: 4.0.0-ONAP~42 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=cde4f9d521b310be701fc76025697f1052a7c846;p=integration.git Remove mariadb shared databases in cleanup script Signed-off-by: Yang Xu Issue-ID: INT-1105 Change-Id: I3d4f8777f894e60660cb78e176bc9b81fd02ae6c --- diff --git a/deployment/heat/onap-rke/scripts/cleanup.sh b/deployment/heat/onap-rke/scripts/cleanup.sh index 324badfb9..7d8dd5c68 100755 --- a/deployment/heat/onap-rke/scripts/cleanup.sh +++ b/deployment/heat/onap-rke/scripts/cleanup.sh @@ -17,7 +17,19 @@ 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}" + kubectl exec dev-cassandra-cassandra-0 -- cqlsh -u cassandra -p cassandra -e "drop keyspace ${keyspace}" + done +fi + +if [ $COMPONENT == "so" ] || [ $COMPONENT == "SO" ]; then + for database in camundabpmn catalogdb requestdb; do + kubectl exec dev-mariadb-galera-mariadb-galera-0 -- mysql -uroot -psecretpassword -e "drop database ${database}" + done +fi + +if [ $COMPONENT == "sdnc" ] || [ $COMPONENT == "SDNC" ]; then + for database in sdnctl; do + kubectl exec dev-mariadb-galera-mariadb-galera-0 -- mysql -uroot -psecretpassword -e "drop database ${database}" done fi