dotfiles/terranix/main/kubernetes/generated/istio-istiod/default.ClusterRole.istiod-gateway-controller-istio-system.nix

29 lines
678 B
Nix
Raw Normal View History

{
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"];
}
];
}