You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
Currently we list info for the given instance and we parse the info about the floating IPs from there. 5minute should not be relying on the nova proxy API and should use the neutron API directly.
you can get the fixed ips via "openstack port list --server " then loop over them with openstack floating ip list --fixed-ip $ip
actually rather then --fixed-ip you can also do "openstack floating ip list --port " for each port returned by "openstack port list --server" that is more efficient
ogajduse
changed the title
Change way how to get floating IPs for the given instance
Change way of gettig floating IPs for the given instance
Jun 26, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently we list info for the given instance and we parse the info about the floating IPs from there. 5minute should not be relying on the nova proxy API and should use the neutron API directly.
Currently we do: https://github.com/SatelliteQE/5minute/blob/master/vminute/vminute.py#L708
What we should do (explained using OSP CLI tooling):
^ This will return the ID of the port.
For example:
This way we can get the
10.0.149.240
floating IP and disassociate itThe text was updated successfully, but these errors were encountered: