Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TLS configuration for the command server to the proto definitions #861

Merged
merged 18 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
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
126 changes: 84 additions & 42 deletions api/grpc/mpi/v1/command.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

87 changes: 87 additions & 0 deletions api/grpc/mpi/v1/command.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions api/grpc/mpi/v1/command.proto
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,15 @@ message AgentConfig {
string message_buffer_size = 6;
}

// The command settings, associated with messaging from an external source
message CommandServer {}
// The command server settings, associated with messaging from an external source
message CommandServer {
// Server configuration (e.g., host, port, type)
mpi.v1.ServerSettings server = 1;
// Authentication configuration (e.g., token)
mpi.v1.AuthSettings auth = 2;
// TLS configuration for secure communication
mpi.v1.TLSSettings tls = 3;
}

// The metrics settings associated with origins (sources) of the metrics and destinations (exporter)
message MetricsServer {}
Expand Down
Loading
Loading