constellation/joinservice/joinproto/join.proto

34 lines
773 B
Protocol Buffer
Raw Normal View History

2022-07-05 05:41:31 -04:00
syntax = "proto3";
package join;
option go_package = "github.com/edgelesssys/constellation/joinservice/joinproto";
service API {
rpc IssueJoinTicket(IssueJoinTicketRequest) returns (IssueJoinTicketResponse);
}
message IssueJoinTicketRequest {
string disk_uuid = 1;
bytes certificate_request = 2;
2022-07-05 05:41:31 -04:00
bool is_control_plane = 3;
}
message IssueJoinTicketResponse {
bytes state_disk_key = 1;
bytes owner_id = 2;
bytes cluster_id = 3;
bytes kubelet_cert = 4;
string api_server_endpoint = 5;
string token = 6;
string discovery_token_ca_cert_hash = 7;
repeated control_plane_cert_or_key control_plane_files = 8;
string kubernetes_version = 9;
}
message control_plane_cert_or_key {
string name = 1;
bytes data = 2;
2022-07-05 05:41:31 -04:00
}