kolla-ansible/tools/cleanup-containers
Kuo-tung Kao 1e86af763b put conatiner name to array in cleanup-containers
The brace in string variable will not be expanded in some case.
Put conatiner name into array.

Change-Id: I2fb16e7352bd579f207efce0fb9b2565a1e7236d
Closes-Bug: #1502467
2015-10-06 13:55:58 +08:00

35 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
if [[ $(pgrep qemu) ]]; then
echo "Some qemu processes were detected."
echo "Docker will not be able to stop the nova_libvirt container with those running."
echo "Please clean them up before rerunning this script."
exit 1
fi
containers_to_kill=(
glance_{api,registry,data} \
haproxy \
heat_{api{,_cfn},engine} \
horizon \
keepalived
keystone \
kolla_ansible \
log_data \
mariadb{,_data} \
murano_{api,engine} \
neutron_{server,agents,linuxbridge_agent,openvswitch_agent} \
nova_{data,scheduler,novncproxy,consoleauth,conductor,api,compute,libvirt} \
openvswitch_{vswitchd,db} \
rabbitmq{,_data} \
rsyslog \
swift_{account_{auditor,reaper,replicator,server},container_{auditor,expirer,replicator,server,updater},proxy_server,rsyncd}
)
echo "Stopping containers..."
(docker stop -t 2 ${containers_to_kill[@]} 2>&1) > /dev/null
echo "Removing containers..."
(docker rm -v -f ${containers_to_kill[@]} 2>&1) > /dev/null
echo "All cleaned up!"