Andrey Smirnov 96aa9638f7
chore: rename talos-systems/talos to siderolabs/talos
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>
2022-11-03 16:50:32 +04:00

32 lines
663 B
Protocol Buffer
Executable File

syntax = "proto3";
package talos.resource.definitions.extensions;
option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/extensions";
// Compatibility describes extension compatibility.
message Compatibility {
Constraint talos = 1;
}
// Constraint describes compatibility constraint.
message Constraint {
string version = 1;
}
// Layer defines overlay mount layer.
message Layer {
string image = 1;
Metadata metadata = 2;
}
// Metadata describes base extension metadata.
message Metadata {
string name = 1;
string version = 2;
string author = 3;
string description = 4;
Compatibility compatibility = 5;
}