2014-10-17 12:40:31 +00:00
|
|
|
#!/bin/bash
|
2015-08-27 13:24:43 +00:00
|
|
|
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
|
2015-08-31 04:14:17 +00:00
|
|
|
fi
|
2015-08-27 13:24:43 +00:00
|
|
|
|
2015-12-02 22:54:52 +00:00
|
|
|
if [ -n "$1" ]; then
|
|
|
|
containers_to_kill=($(docker ps | grep -E "$1" | awk '{print $1}'))
|
|
|
|
else
|
|
|
|
containers_to_kill=(
|
|
|
|
glance_{api,registry,data} \
|
|
|
|
haproxy \
|
|
|
|
heat_{api{,_cfn},engine} \
|
|
|
|
horizon \
|
|
|
|
keepalived
|
|
|
|
keystone \
|
|
|
|
kolla_ansible \
|
|
|
|
log_data \
|
|
|
|
magnum_{api,conductor} \
|
|
|
|
mariadb{,_data} \
|
|
|
|
murano_{api,engine} \
|
|
|
|
neutron_{server,agents,linuxbridge_agent,openvswitch_agent} \
|
|
|
|
nova_{data,scheduler,novncproxy,consoleauth,conductor,api,compute,libvirt} \
|
|
|
|
openvswitch_{vswitchd,db,data} \
|
|
|
|
rabbitmq{,_data} \
|
|
|
|
rsyslog \
|
|
|
|
swift_{account_{auditor,reaper,replicator,server},container_{auditor,expirer,replicator,server,updater},proxy_server,rsyncd} \
|
2015-12-09 16:21:34 -08:00
|
|
|
memcached \
|
2015-12-14 16:17:59 +01:00
|
|
|
cinder_{volume,scheduler,backup,api} \
|
|
|
|
ironic-{discoverd,conductor,api,pxe}
|
2015-12-02 22:54:52 +00:00
|
|
|
)
|
|
|
|
fi
|
2015-08-27 13:24:43 +00:00
|
|
|
|
|
|
|
echo "Stopping containers..."
|
2015-10-06 11:07:43 +08:00
|
|
|
(docker stop -t 2 ${containers_to_kill[@]} 2>&1) > /dev/null
|
2015-08-27 13:24:43 +00:00
|
|
|
|
|
|
|
echo "Removing containers..."
|
2015-10-06 11:07:43 +08:00
|
|
|
(docker rm -v -f ${containers_to_kill[@]} 2>&1) > /dev/null
|
2015-08-27 13:24:43 +00:00
|
|
|
|
|
|
|
echo "All cleaned up!"
|