-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use grpc client for wait request (#14)
* use grpc client for wait request * Use go-hal to detect vendor and set hard coded password for BMC in case of lenovo for now * use nvm disk for y1 type of machines * Use metal-stack/go-hal for all BMC and BIOS related calls
- Loading branch information
Sandro Koll
authored
Aug 6, 2020
1 parent
390024d
commit 8e5c21b
Showing
23 changed files
with
755 additions
and
9,576 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
syntax = "proto3"; | ||
|
||
package v1; | ||
|
||
option go_package = "api/v1"; | ||
|
||
message WaitRequest { | ||
string machineID = 1; | ||
} | ||
|
||
message WaitResponse {} | ||
|
||
service Wait { | ||
rpc Wait (WaitRequest) returns (stream WaitResponse); | ||
} |
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.