Skip to content
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

Remove Chassis from proto and instead implement it as a struct. #114

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 0 additions & 17 deletions proto/bootz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -227,23 +227,6 @@ message ReportStatusRequest {
message EmptyResponse {
}

// Chassis represents a single chassis owned by an organization.
message Chassis {
string serial_number = 1;
string manufacturer = 2;
string part_number = 3;
repeated ControlCard control_cards = 4;
string hostname = 5;
BootMode boot_mode = 6;
SoftwareImage software_image = 7;
string management_ip = 8;
BootConfig boot_config = 9;
Credentials credentials = 10;
gnsi.pathz.v1.UploadRequest pathz = 11;
gnsi.authz.v1.UploadRequest authz = 12;
gnsi.certz.v1.UploadRequest certificates = 13;
}

// BootMode specifies if the chassis should utilize OV data.
// Secure mode uses the OV validation.
enum BootMode {
Expand Down
Loading
Loading