mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-22 15:11:10 +02:00
This PR moves the reset API to the init API definition. It leverages the same code we use for upgrades. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
122 lines
3.1 KiB
Protocol Buffer
122 lines
3.1 KiB
Protocol Buffer
|
|
syntax = "proto3";
|
|
|
|
package proto;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
// The Init service definition.
|
|
service Init {
|
|
rpc CopyOut(CopyOutRequest) returns (stream StreamingData) {}
|
|
rpc LS(LSRequest) returns (stream FileInfo) {}
|
|
rpc Reboot(google.protobuf.Empty) returns (RebootReply) {}
|
|
rpc Reset(google.protobuf.Empty) returns (ResetReply) {}
|
|
rpc Shutdown(google.protobuf.Empty) returns (ShutdownReply) {}
|
|
rpc Upgrade(UpgradeRequest) returns (UpgradeReply) {}
|
|
rpc ServiceList(google.protobuf.Empty) returns (ServiceListReply) {}
|
|
}
|
|
|
|
|
|
// The response message containing the reboot status.
|
|
message RebootReply {}
|
|
|
|
// The response message containing the restart status.
|
|
message ResetReply {}
|
|
|
|
// The response message containing the shutdown status.
|
|
message ShutdownReply {}
|
|
|
|
message UpgradeRequest {
|
|
string url = 1;
|
|
}
|
|
|
|
message UpgradeReply { string ack = 1; }
|
|
|
|
message ServiceListReply {
|
|
repeated ServiceInfo services = 1;
|
|
}
|
|
|
|
message ServiceInfo {
|
|
string id = 1;
|
|
string state = 2;
|
|
ServiceEvents events = 3;
|
|
ServiceHealth health = 4;
|
|
}
|
|
|
|
message ServiceEvents {
|
|
repeated ServiceEvent events = 1;
|
|
}
|
|
|
|
message ServiceEvent {
|
|
string msg = 1;
|
|
string state = 2;
|
|
google.protobuf.Timestamp ts = 3;
|
|
}
|
|
|
|
message ServiceHealth {
|
|
bool unknown = 1;
|
|
bool healthy = 2;
|
|
string lastMessage = 3;
|
|
google.protobuf.Timestamp lastChange = 4;
|
|
}
|
|
|
|
message StopRequest { string id = 1; }
|
|
|
|
message StopReply { string resp = 1; }
|
|
|
|
// StreamingData is used to stream back responses
|
|
message StreamingData {
|
|
bytes bytes = 1;
|
|
string errors = 2;
|
|
}
|
|
|
|
// CopyOutRequest describes a request to copy data out of Talos node
|
|
//
|
|
// CopyOut produces .tar.gz archive which is streamed back to the caller
|
|
message CopyOutRequest {
|
|
// Root path to start copying data out, it might be either a file or directory
|
|
string root_path = 1;
|
|
}
|
|
|
|
// LSRequest describes a request to list the contents of a directory
|
|
message LSRequest {
|
|
|
|
// Root indicates the root directory for the list. If not indicated, '/' is presumed.
|
|
string root = 1;
|
|
|
|
// Recurse indicates that subdirectories should be recursed.
|
|
bool recurse = 2;
|
|
|
|
// RecursionDepth indicates how many levels of subdirectories should be recursed. The default (0) indicates that no limit should be enforced.
|
|
int32 recursion_depth = 3;
|
|
}
|
|
|
|
// FileInfo describes a file or directory's information
|
|
message FileInfo {
|
|
|
|
// Name is the name (including prefixed path) of the file or directory
|
|
string name = 1;
|
|
|
|
// Size indicates the number of bytes contained within the file
|
|
int64 size = 2;
|
|
|
|
// Mode is the bitmap of UNIX mode/permission flags of the file
|
|
uint32 mode = 3;
|
|
|
|
// Modified indicates the UNIX timestamp at which the file was last modified
|
|
int64 modified = 4; // TODO: unix timestamp or include proto's Date type
|
|
|
|
// IsDir indicates that the file is a directory
|
|
bool is_dir = 5;
|
|
|
|
// Error describes any error encountered while trying to read the file information.
|
|
string error = 6;
|
|
|
|
// Link is filled with symlink target
|
|
string link = 7;
|
|
|
|
// RelativeName is the name of the file or directory relative to the RootPath
|
|
string relative_name = 8;
|
|
}
|