Is there any command to get already created floating IPs from a pool and which aren't assigned anymore to any VM instance ?
That's my use case:
- I create a floating IP and assign it to a VM with these commands:
nova floating-ip create [MyPool]
nova add-floating-ip [MyVM] [created_ip]
- I shutdown MyVM and delete it
- I do 1 and 2 in a loop and at a given time I use up all the available floating IPs in the pool and get the following error message:
No more floating ips in pool MyPool
- Question: how to automatically reuse detached floating IPs that aren't in the floating pool anymore ?