Gary Wu | ab1fd53 | 2018-01-05 14:04:51 -0800 | [diff] [blame] | 1 | #!/bin/bash |
Gary Wu | a867833 | 2017-10-19 12:39:19 -0700 | [diff] [blame] | 2 | # Get floating IP assigned to a server name |
Gary Wu | ab1fd53 | 2018-01-05 14:04:51 -0800 | [diff] [blame] | 3 | openstack server show -c addresses -f json $1 | jq -r '.addresses' | tr -d ' ' | cut -d ',' -f 2 |