mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-15 01:21:32 +02:00
Overview: deprecate existing Talos resource API, and introduce new COSI API. Consequences: * COSI API can only go via one-2-one proxy (`client.WithNode`) * client-side API access is way easier with `state.State` wrappers * lots of small changes on the client side to use new APIs Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
12 lines
355 B
Protocol Buffer
12 lines
355 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resource.network;
|
|
|
|
option go_package = "github.com/talos-systems/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;
|
|
}
|