-
Notifications
You must be signed in to change notification settings - Fork 62
BlueprintSledConfig: add sled subnet
#9416
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
Open
jgallagher
wants to merge
25
commits into
main
Choose a base branch
from
john/blueprint-store-sled-subnet
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
5b26fc4
builder: add method to add boundary NTP directly instead of always pr…
jgallagher 5cef8ac
use builder in rack_set_initialized_with_services()
jgallagher 6baa021
rack_set_initialized_missing_service_pool_ip_throws_error()
jgallagher d00b536
rack_set_initialized_with_many_nexus_services()
jgallagher 8302b01
rack_set_initialized_with_ipv6_public_addresses()
jgallagher ce1c5dc
rack_set_initialized_overlapping_ips_throws_error()
jgallagher fc4658d
revert now-unneccesary visibility change
jgallagher 3373282
add BlueprintBuilder::build_empty()
jgallagher efd74fa
example system: start with truly empty blueprint
jgallagher 4b9eeaf
use build_empty() where we can
jgallagher ff1b86a
use example system in test_ensure_external_networking_works_with_good…
jgallagher 8d968c5
test_external_dns_external_ips_specified_by_rack_setup()
jgallagher 3efe2c0
test_default_cockroach_admin_addrs_from_blueprint()
jgallagher 9c30cd7
remove build_empty_with_sleds()
jgallagher de048ec
expectorate
jgallagher 263cd1f
clippy
jgallagher c2e6bed
add sled subnet to blueprint (planner tests pass)
jgallagher f33e983
expectorate: reconfigurator-cli tests
jgallagher 831d728
update RSS to include sled subnet in blueprint
jgallagher e43a038
add subnet column to bp_sled_metadata table
jgallagher 9d71e86
db migration
jgallagher ef51fa2
minor test fixes
jgallagher 660056e
update lockstep openapi
jgallagher aa85885
cargo fmt
jgallagher c316607
Merge branch 'main' into john/blueprint-store-sled-subnet
jgallagher 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
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
Hmm, https://docs.rs/oxnet has
Ipv6Netbut doesn't use a const generic. Nothing to change here but an interesting inconsistency.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.
This is a newtype around
oxnet::Ipv6Net, actually! All it does is add the const generic.