Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions proto/jumpstarter/v1/jumpstarter.proto
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@ message GetReportResponse {
// jumpstarter.dev/hostname=
// jumpstarter.dev/name=
repeated DriverInstanceReport reports = 3;
repeated Endpoint alternative_endpoints = 4;
}

message Endpoint {
string endpoint = 1;
string token = 2;
optional string certificate = 3;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, since you discover this self-signed cert during connection thorough the main jumpstarter-controller... you know you can trust it. you obtained it in a secure channel :D

And same for the token,

brilliant!

}

message DriverCallRequest {
Expand Down