3a612efd53
This commit is a whole new version of OSPurge. Currently OSPurge suffers from the following limitations: * It's slow (monothread) * It's not guaranteed to complete. If a resource fails to be deleted then OSPurge can choke on deleting other resources that depends on the first one. * Not properly unit tested. * Not modular (one huge file to deal with all services) This new version is: * Faster (multithreaded, thanks to a ThreadPoolExecutor) * Safe (we check and wait for some prerequisites before attempting a delete) * 100% unit tested. * Modular (one file per service) Note that it's Python3.5 compatible. It also uses OpenStack Shade and OpenStack client-config libraries so that OSPurge focuses on the cleaning logic only. Overall I believe this is a better version of OSPurge and more future proof. NOte that we tagged and released OSPurge 1.3 recently in case the new version was not satisfactory to everybody. Change-Id: I5eb92a0556df210ea3cb4e471b8db3b5bf7ed5ee
47 lines
1.6 KiB
Bash
Executable File
47 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# Be strict (but not too much: '-u' doesn't always play nice with devstack)
|
|
set -eo pipefail
|
|
|
|
readonly PROGDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source ~/devstack/openrc admin admin
|
|
|
|
###############################
|
|
### Set quotas
|
|
###############################
|
|
project_id=$(openstack token issue | awk '/ project_id /{print $4}')
|
|
openstack quota set --subnets 15 ${project_id}
|
|
openstack quota set --networks 15 ${project_id}
|
|
openstack quota set --volumes 15 ${project_id}
|
|
openstack quota set --snapshots 15 ${project_id}
|
|
openstack quota set --instances 15 ${project_id}
|
|
openstack quota set --secgroups 15 ${project_id}
|
|
openstack quota set --routers 15 ${project_id}
|
|
openstack quota set --backups 15 ${project_id}
|
|
|
|
|
|
|
|
###############################
|
|
### Populate project
|
|
###############################
|
|
seq 12 | parallel --halt-on-error 1 -n0 -j3 ${PROGDIR}/populate.sh
|
|
|
|
|
|
|
|
###############################
|
|
### Cleanup project
|
|
###############################
|
|
tox -e run -- --os-cloud devstack-admin --purge-own-project --verbose
|