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;
|
2022-07-15 03:33:11 -04:00
|
|
|
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;
|
2022-07-15 03:33:11 -04:00
|
|
|
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;
|
2022-07-18 06:28:02 -04:00
|
|
|
string kubernetes_version = 9;
|
2022-07-11 07:29:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
message control_plane_cert_or_key {
|
|
|
|
string name = 1;
|
|
|
|
bytes data = 2;
|
2022-07-05 05:41:31 -04:00
|
|
|
}
|