mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-13 10:07:05 +02:00
This option must be defined at the proto level in order to have an import path that is reasonably usable Signed-off-by: Eddie Zaneski <eddiezane@gmail.com> Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
19 lines
470 B
Protocol Buffer
Executable File
19 lines
470 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";
|
|
option java_package = "dev.talos.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;
|
|
}
|
|
|