mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-07 16:55:15 -04:00
Rename coordinator to bootstrapper and rename roles
This commit is contained in:
parent
3280ed200c
commit
916e5d6b55
191 changed files with 1763 additions and 2030 deletions
32
bootstrapper/initproto/init.proto
Normal file
32
bootstrapper/initproto/init.proto
Normal file
|
@ -0,0 +1,32 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package init;
|
||||
|
||||
option go_package = "github.com/edgelesssys/constellation/bootstrapper/initproto";
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
message InitResponse {
|
||||
bytes kubeconfig = 1;
|
||||
bytes owner_id = 2;
|
||||
bytes cluster_id = 3;
|
||||
}
|
||||
|
||||
message SSHUserKey {
|
||||
string username = 1;
|
||||
string public_key = 2;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue