mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
e7fc541a57
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
18 lines
384 B
Protocol Buffer
18 lines
384 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package upgrade;
|
|
|
|
option go_package = "github.com/edgelesssys/constellation/v2/upgrade-agent/upgradeproto";
|
|
|
|
service Update {
|
|
rpc ExecuteUpdate(ExecuteUpdateRequest) returns (ExecuteUpdateResponse);
|
|
}
|
|
|
|
message ExecuteUpdateRequest {
|
|
string kubeadm_url = 1;
|
|
string kubeadm_hash = 2;
|
|
string wanted_kubernetes_version = 3;
|
|
}
|
|
|
|
message ExecuteUpdateResponse {}
|