mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-08 14:11:13 +02:00
There's a cyclic dependency on siderolink library which imports talos machinery back. We will fix that after we get talos pushed under a new name. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
15 lines
320 B
Protocol Buffer
Executable File
15 lines
320 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package talos.resource.definitions.proto;
|
|
|
|
option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/proto";
|
|
|
|
// Mount specifies a mount for a container.
|
|
message Mount {
|
|
string destination = 1;
|
|
string type = 2;
|
|
string source = 3;
|
|
repeated string options = 4;
|
|
}
|
|
|