Skip to content

Instantly share code, notes, and snippets.

@4383
Created April 17, 2019 16:06
Show Gist options
  • Save 4383/07ec874d30ad6d696de28c063835283a to your computer and use it in GitHub Desktop.
Save 4383/07ec874d30ad6d696de28c063835283a to your computer and use it in GitHub Desktop.
restart all nova containers
# On controllers
# ssh heat-admin@<controller-ip>
for el in $(sudo docker ps | grep nova | awk '{print $1}'); do sudo docker restart $el; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment