mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-18 21:21:10 +02:00
This moves Logs endpoint to machined to reduce the mount footprint of osd. Signed-off-by: Brad Beam <brad.beam@talos-systems.com>
30 lines
493 B
Protocol Buffer
30 lines
493 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common;
|
|
|
|
option go_package = "github.com/talos-systems/talos/api/common";
|
|
|
|
// Common metadata message nested in all reply message types
|
|
message NodeMetadata {
|
|
string hostname = 1;
|
|
}
|
|
|
|
// The response message containing the requested logs.
|
|
message Data {
|
|
bytes bytes = 1;
|
|
}
|
|
|
|
message DataResponse {
|
|
NodeMetadata metadata = 1;
|
|
Data bytes = 2;
|
|
}
|
|
|
|
message DataReply {
|
|
repeated DataResponse response = 1;
|
|
}
|
|
|
|
enum ContainerDriver {
|
|
CONTAINERD = 0;
|
|
CRI = 1;
|
|
}
|