Eddie Zaneski 5ba1df4695
chore: add java package to protos
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>
2024-08-26 15:23:21 +04:00

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;
}