mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-25 23:49:37 -05:00
8cb155d5c5
* Refactor disk-mapper recovery * Adapt constellation recover command to use new disk-mapper recovery API * Fix Cilium connectivity on rebooting nodes (#89) * Lower CoreDNS reschedule timeout to 10 seconds (#93) Signed-off-by: Daniel Weiße <dw@edgeless.systems>
21 lines
401 B
Protocol Buffer
21 lines
401 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package recoverproto;
|
|
|
|
option go_package = "github.com/edgelesssys/constellation/disk-mapper/recoverproto";
|
|
|
|
service API {
|
|
rpc Recover(stream RecoverMessage) returns (stream RecoverResponse) {}
|
|
}
|
|
|
|
message RecoverMessage {
|
|
oneof request {
|
|
bytes state_disk_key = 1;
|
|
bytes measurement_secret = 2;
|
|
}
|
|
}
|
|
|
|
message RecoverResponse {
|
|
string disk_uuid = 1;
|
|
}
|