-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provider/openstack allow floating ip to target a specific tenant #6454
provider/openstack allow floating ip to target a specific tenant #6454
Conversation
The CI failure appears unrelated to this patch, is there a way to trigger the CI job again ? |
@cristicalin Sorry for the delay on this. Doing a forceful push will retrigger the Travis checks:
If git doesn't want to accept a blank push, something like |
Sorry for the late reaction to this. |
LGTM! would it be possible to squash the commits into one? It's good to merge after that. 😄 |
7a8f5f7
to
cc9a8d5
Compare
Allow a cloud admin to target a specific tenant in which to allocate a floating IP. This is useful when the cloud admin does not want to delegate network privileges to the tenants or various Q&A scenarios.
cc9a8d5
to
d2b33d5
Compare
squashed and now it should be good to go |
👍 |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Gophercloud library supports specifying a tenant_id in the Create function.
This patch extends the floatingip schema to allow a cloud admin to specify a tenant_id.
Major use cases:
The patch also adds relevant documentation information.