Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8f0ffe1
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Dec 18, 2025
5b645b6
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 18, 2025
c4550be
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 18, 2025
66eed31
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 26, 2025
f77213d
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Dec 26, 2025
5249f29
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Dec 26, 2025
2205ee7
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 26, 2025
c2adcb6
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 26, 2025
677a241
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Dec 26, 2025
14abf58
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 26, 2025
11d7e8e
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 26, 2025
63ae03b
Merge branch 'main' into integration
oxide-reflector-bot[bot] Dec 26, 2025
37ff024
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Dec 31, 2025
1beed5d
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Jan 2, 2026
0d7320e
update for ip_version field
ahl Jan 4, 2026
503fcba
Merge branch 'main' into integration
oxide-reflector-bot[bot] Jan 4, 2026
47ffc36
Merge branch 'main' into integration
oxide-reflector-bot[bot] Jan 4, 2026
4597268
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Jan 4, 2026
30e2ef9
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Jan 4, 2026
ba112c9
update test
ahl Jan 4, 2026
d38a6e2
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Jan 8, 2026
647fa91
Merge branch 'main' into integration
oxide-reflector-bot[bot] Jan 8, 2026
13150ec
Merge branch 'main' into integration
oxide-reflector-bot[bot] Jan 8, 2026
d335a11
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Jan 8, 2026
5b1d038
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Jan 10, 2026
afe5d65
Merge branch 'main' into integration
oxide-reflector-bot[bot] Jan 10, 2026
4b343e7
Rebuilt with latest dependency updates
oxide-reflector-bot[bot] Jan 10, 2026
4dc3642
Merge branch 'main' into integration
oxide-reflector-bot[bot] Jan 11, 2026
5aa9e74
update
ahl Jan 11, 2026
b7b91ae
Merge branch 'main' into integration
oxide-reflector-bot[bot] Jan 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions cli/docs/cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -3319,10 +3319,6 @@
"long": "instance",
"help": "Name or ID of the instance"
},
{
"long": "ip",
"help": "The IP address for the interface. One will be auto-assigned if not provided."
},
{
"long": "json-body",
"help": "Path to a file that contains the full json body."
Expand Down
14 changes: 0 additions & 14 deletions cli/src/generated_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4430,16 +4430,6 @@ impl<T: CliConfig> Cli<T> {
.required(true)
.help("Name or ID of the instance"),
)
.arg(
::clap::Arg::new("ip")
.long("ip")
.value_parser(::clap::value_parser!(::std::net::IpAddr))
.required(false)
.help(
"The IP address for the interface. One will be auto-assigned if not \
provided.",
),
)
.arg(
::clap::Arg::new("name")
.long("name")
Expand Down Expand Up @@ -14115,10 +14105,6 @@ impl<T: CliConfig> Cli<T> {
request = request.instance(value.clone());
}

if let Some(value) = matches.get_one::<::std::net::IpAddr>("ip") {
request = request.body_map(|body| body.ip(value.clone()))
}

if let Some(value) = matches.get_one::<types::Name>("name") {
request = request.body_map(|body| body.name(value.clone()))
}
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/data/test_instance_create.stdin
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"name": "name",
"ncpus": 4,
"network_interfaces": {
"type": "default"
"type": "default_dual_stack"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bnaecker does this match your intention? vis-a-vis oxidecomputer/omicron#9508

},
"start": true,
"user_data": ""
Expand Down
Loading