Skip to content

Instantly share code, notes, and snippets.

@goneri
Created July 18, 2016 15:56
Show Gist options
  • Save goneri/b0eadfade46760469c4530d050368bb6 to your computer and use it in GitHub Desktop.
Save goneri/b0eadfade46760469c4530d050368bb6 to your computer and use it in GitHub Desktop.
validate all the overcloud nodes are available
for i in $(nova list|awk '/ctlplane/ {print $12}'); do eval $i; echo -n "${ctlplane}: "; ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet heat-admin@${ctlplane} hostname || echo '**KO**'; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment