dotfiles/terranix/main/kubernetes/generated/istio-istiod/default.ClusterRoleBinding.istiod-gateway-controller-istio-system.nix
magic_rb 03b54bd52b
Use helm2nix2terraform to create nix files from helm charts
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-04-07 13:24:08 +02:00

23 lines
493 B
Nix

{
apiVersion = "rbac.authorization.k8s.io/v1";
kind = "ClusterRoleBinding";
metadata = {
labels = {
app = "istiod";
release = "istio-istiod";
};
name = "istiod-gateway-controller-istio-system";
};
roleRef = {
apiGroup = "rbac.authorization.k8s.io";
kind = "ClusterRole";
name = "istiod-gateway-controller-istio-system";
};
subjects = [
{
kind = "ServiceAccount";
name = "istiod";
namespace = "istio-system";
}
];
}