Skip to content
Snippets Groups Projects
Commit 4c6907f7 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Also remove the volumes when cleaning up containers"

parents 78562697 29833132
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ fi ...@@ -8,6 +8,7 @@ fi
if [ -n "$1" ]; then if [ -n "$1" ]; then
containers_to_kill=($(docker ps | grep -E "$1" | awk '{print $1}')) containers_to_kill=($(docker ps | grep -E "$1" | awk '{print $1}'))
volumes_to_remove=($(docker volume ls | grep -E "$1" | awk '{print $1}'))
else else
containers_to_kill=( containers_to_kill=(
bootstrap_{ceph_mon,cinder,glance,heat,ironic,ironic_pxe,keystone,magnum,mistral,mongodb,murano,neutron,nova,nova_compute} \ bootstrap_{ceph_mon,cinder,glance,heat,ironic,ironic_pxe,keystone,magnum,mistral,mongodb,murano,neutron,nova,nova_compute} \
...@@ -35,6 +36,20 @@ else ...@@ -35,6 +36,20 @@ else
) )
ceph_osd_bootstrap=$(docker ps -a --filter "name=bootstrap_osd_*" --format "{{.Names}}") ceph_osd_bootstrap=$(docker ps -a --filter "name=bootstrap_osd_*" --format "{{.Names}}")
containers_to_kill="${containers_to_kill} ${ceph_osd_bootstrap}" containers_to_kill="${containers_to_kill} ${ceph_osd_bootstrap}"
volumes_to_remove=(
glance \
ironic-pxe \
mariadb \
openvswitch_db \
neutron_metadata_socket \
nova_{compute,libvirt} \
ceph_mon{,_config} \
rabbitmq \
mongodb \
rsyslog{,_socket} \
haproxy_socket
)
fi fi
echo "Stopping containers..." echo "Stopping containers..."
...@@ -43,4 +58,7 @@ echo "Stopping containers..." ...@@ -43,4 +58,7 @@ echo "Stopping containers..."
echo "Removing containers..." echo "Removing containers..."
(docker rm -v -f ${containers_to_kill[@]} 2>&1) > /dev/null (docker rm -v -f ${containers_to_kill[@]} 2>&1) > /dev/null
echo "Removing volumes..."
(docker volume rm ${volumes_to_remove[@]} 2>&1) > /dev/null
echo "All cleaned up!" echo "All cleaned up!"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment