mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-12 01:42:02 +01:00
29 lines
678 B
Nix
29 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"];
|
||
|
}
|
||
|
];
|
||
|
}
|