-
Notifications
You must be signed in to change notification settings - Fork 42
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
[nexus] Silo IP pools #3985
Merged
Merged
[nexus] Silo IP pools #3985
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
8c1df39
add silo_id to views::IpPool
david-crespo 29cb45c
add silo param to IpPoolCreate
david-crespo bd61072
pass through silo name or ID to IP pool create, test with ID and name
david-crespo 049fc0f
change internal column to use silo id, add and populate default column
david-crespo b151e08
new default IP pool logic with fallback to higher levels
david-crespo 6455ec3
fix outdated comment on external IP queries, bump openapi spec
david-crespo 1c047dc
fix unique index preventing multiple defaults per scope
david-crespo 6e7d60f
rename default to is_default to work around possible progenitor bug
david-crespo 2ba2ffe
first pass at IP pool lookup by name logic
david-crespo 0798ab2
fix external IPs tests, simplify pool lookup by name logic
david-crespo 54060f4
remove too-strict auth check on getting default pool
david-crespo b296e99
don't pass around the silo ID, it's always the current authz silo
david-crespo e591c12
plumb through project_id, but you still can't make a project-scoped pool
david-crespo 06b1af7
PR suggestions around comments and deps
david-crespo e3c56c4
don't edit an existing migration!
david-crespo 2d77525
remove half-baked project_id stuff for now
david-crespo 8ab9920
remove superfluous _for on method names
david-crespo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be
NameOrId
? No need to do it now, just asking...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I'm pretty sure it could be. I think the main reason it was name only was that the name
"default"
was significant, and now it isn't.