mirror of
https://github.com/siderolabs/talos.git
synced 2026-04-16 11:11:35 +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>
13 lines
408 B
Protocol Buffer
13 lines
408 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resource.network;
|
|
|
|
option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/network";
|
|
option java_package = "dev.talos.api.resource.network";
|
|
|
|
// DeviceConfigSpecSpec is the spec for the network.DeviceConfigSpec resource.
|
|
message DeviceConfigSpecSpec {
|
|
// Contains YAML marshalled device config (as part of the machine config).
|
|
bytes yaml_marshalled = 1;
|
|
}
|