mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-07 07:07:10 +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>
18 lines
404 B
Protocol Buffer
Executable File
18 lines
404 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package talos.resource.definitions.files;
|
|
|
|
option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/files";
|
|
|
|
// EtcFileSpecSpec describes status of rendered secrets.
|
|
message EtcFileSpecSpec {
|
|
bytes contents = 1;
|
|
uint32 mode = 2;
|
|
}
|
|
|
|
// EtcFileStatusSpec describes status of rendered secrets.
|
|
message EtcFileStatusSpec {
|
|
string spec_version = 1;
|
|
}
|
|
|