mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
22 lines
507 B
Protocol Buffer
22 lines
507 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package upgrade;
|
|
|
|
import "internal/versions/components/components.proto";
|
|
|
|
option go_package = "github.com/edgelesssys/constellation/v2/upgrade-agent/upgradeproto";
|
|
|
|
service Update {
|
|
rpc ExecuteUpdate(ExecuteUpdateRequest) returns (ExecuteUpdateResponse);
|
|
}
|
|
|
|
message ExecuteUpdateRequest {
|
|
reserved 1, 2;
|
|
reserved "kubeadm_url", "kubeadm_hash";
|
|
string wanted_kubernetes_version = 3;
|
|
|
|
repeated components.Component kubernetes_components = 4;
|
|
}
|
|
|
|
message ExecuteUpdateResponse {}
|