add restart and destroy subcommands to tools/kolla

Convenience commands for restarting all containers and destroying all
containers

Change-Id: I9c4759dbe699bd4b609cefa694ecc897355ff60a
This commit is contained in:
Justin Riley 2015-05-08 12:35:11 -04:00
parent 57990a94ae
commit 68e4dba46a

View File

@ -91,6 +91,8 @@ Commands:
start Start all kolla containers start Start all kolla containers
status List running kolla containers status List running kolla containers
stop Stop all kolla containers stop Stop all kolla containers
restart Restart all kolla containers
destroy Kill and remove all kolla containers and volumes
EOF EOF
} }
@ -110,6 +112,12 @@ case "$1" in
post_start post_start
;; ;;
(restart)
ACTION="Restarting"
COMPOSE_CMD="restart"
process_all
;;
(status) (status)
ACTION="Status of" ACTION="Status of"
COMPOSE_CMD="ps" COMPOSE_CMD="ps"
@ -122,6 +130,14 @@ case "$1" in
process_all process_all
;; ;;
(destroy)
ACTION="Destroying"
COMPOSE_CMD="kill"
process_all
COMPOSE_CMD="rm -f -v"
process_all
;;
(*) usage (*) usage
exit 0 exit 0
;; ;;