mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-29 09:41:12 +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>
15 lines
428 B
Protocol Buffer
Executable File
15 lines
428 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package talos.resource.definitions.kubeaccess;
|
|
|
|
option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/kubeaccess";
|
|
option java_package = "dev.talos.api.resource.definitions.kubeaccess";
|
|
|
|
// ConfigSpec describes KubeSpan configuration..
|
|
message ConfigSpec {
|
|
bool enabled = 1;
|
|
repeated string allowed_api_roles = 2;
|
|
repeated string allowed_kubernetes_namespaces = 3;
|
|
}
|
|
|