mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-17 18:41:16 +02:00
This commit adds structprotogen tool which is used to generate proto file from Go structs. Closes #6078. Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
15 lines
339 B
Protocol Buffer
Executable File
15 lines
339 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package talos.resource.definitions.cri;
|
|
|
|
option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/cri";
|
|
|
|
import "google/protobuf/struct.proto";
|
|
|
|
// SeccompProfileSpec represents the SeccompProfile.
|
|
message SeccompProfileSpec {
|
|
string name = 1;
|
|
google.protobuf.Struct value = 2;
|
|
}
|
|
|