Skip to content

Commit

Permalink
chore: use common infra provider library
Browse files Browse the repository at this point in the history
Switch to using the common infra provider library.

Signed-off-by: Artem Chernyshev <[email protected]>
  • Loading branch information
Unix4ever committed Aug 28, 2024
1 parent 602810d commit 5c31845
Show file tree
Hide file tree
Showing 22 changed files with 874 additions and 908 deletions.
139 changes: 121 additions & 18 deletions api/specs/specs.pb.go

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

11 changes: 10 additions & 1 deletion api/specs/specs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,19 @@ message RebootSpec {
// RebootStatusSpec is generated for each reboot spec.
message RebootStatusSpec {}

// MachineSpec started by the cloud provider emulator.
// MachineSpec is stored in Omni in the infra provisioner state.
message MachineSpec {
int32 slot = 1;
string uuid = 2;
string schematic = 3;
string talos_version = 4;
}

// MachineTaskSpec is stored in the emulator state and the c.
message MachineTaskSpec {
int32 slot = 1;
string uuid = 2;
string schematic = 3;
string talos_version = 4;
string connection_args = 5;
}
Loading

0 comments on commit 5c31845

Please sign in to comment.