diff options
Diffstat (limited to 'deployment/heat/onap-rke/scripts')
-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 3a6644b69..9a35791f5 100755 --- a/deployment/heat/onap-rke/scripts/cleanup.sh +++ b/deployment/heat/onap-rke/scripts/cleanup.sh @@ -47,6 +47,12 @@ if [ $COMPONENT == "sdnc" ]; then done fi +if [ $COMPONENT == "aai" ]; then + for keyspace in aaigraph ; do + kubectl -n $NAMESPACE exec dev-cassandra-cassandra-0 -- cqlsh -u cassandra -p cassandra --request-timeout=30 -e "drop keyspace ${keyspace}" + done +fi + for op in secrets configmaps pvc pv deployments statefulsets clusterrolebinding jobs; do ARRAY=(`kubectl get $op -n $NAMESPACE | grep $DEPLOYMENT-$COMPONENT | awk '{print $1}'`) for i in ${ARRAY[*]}; do |