2022-06-21 11:59:12 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package init;
|
|
|
|
|
2022-06-29 09:26:29 -04:00
|
|
|
option go_package = "github.com/edgelesssys/constellation/bootstrapper/initproto";
|
2022-06-21 11:59:12 -04:00
|
|
|
|
|
|
|
service API {
|
|
|
|
rpc Init(InitRequest) returns (InitResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
message InitRequest {
|
|
|
|
repeated string autoscaling_node_groups = 1;
|
|
|
|
bytes master_secret = 2;
|
|
|
|
string kms_uri = 3;
|
|
|
|
string storage_uri = 4;
|
|
|
|
string key_encryption_key_id = 5;
|
|
|
|
bool use_existing_kek = 6;
|
|
|
|
string cloud_service_account_uri = 7;
|
|
|
|
string kubernetes_version = 8;
|
|
|
|
repeated SSHUserKey ssh_user_keys = 9;
|
2022-07-29 03:52:47 -04:00
|
|
|
bytes salt = 10;
|
2022-08-12 04:20:19 -04:00
|
|
|
bytes helm_deployments = 11;
|
2022-08-12 09:59:45 -04:00
|
|
|
repeated uint32 enforced_pcrs = 12;
|
2022-06-21 11:59:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
message InitResponse {
|
|
|
|
bytes kubeconfig = 1;
|
|
|
|
bytes owner_id = 2;
|
|
|
|
bytes cluster_id = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SSHUserKey {
|
|
|
|
string username = 1;
|
|
|
|
string public_key = 2;
|
|
|
|
}
|