mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-09 14:41:31 +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>
12 lines
352 B
Protocol Buffer
12 lines
352 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resource.network;
|
|
|
|
option go_package = "github.com/siderolabs/talos/pkg/machinery/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;
|
|
}
|