dotfiles/terranix/main/kubernetes/generated/istio-istiod/default.ClusterRole.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

28 lines
678 B
Nix

{
apiVersion = "rbac.authorization.k8s.io/v1";
kind = "ClusterRole";
metadata = {
labels = {
app = "istiod";
release = "istio-istiod";
};
name = "istiod-gateway-controller-istio-system";
};
rules = [
{
apiGroups = ["apps"];
resources = ["deployments"];
verbs = ["get" "watch" "list" "update" "patch" "create" "delete"];
}
{
apiGroups = [""];
resources = ["services"];
verbs = ["get" "watch" "list" "update" "patch" "create" "delete"];
}
{
apiGroups = [""];
resources = ["serviceaccounts"];
verbs = ["get" "watch" "list" "update" "patch" "create" "delete"];
}
];
}