mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-12 01:42:02 +01:00
24 lines
479 B
Nix
24 lines
479 B
Nix
|
{
|
||
|
apiVersion = "rbac.authorization.k8s.io/v1";
|
||
|
kind = "ClusterRoleBinding";
|
||
|
metadata = {
|
||
|
labels = {
|
||
|
app = "istiod";
|
||
|
release = "istio-istiod";
|
||
|
};
|
||
|
name = "istiod-clusterrole-istio-system";
|
||
|
};
|
||
|
roleRef = {
|
||
|
apiGroup = "rbac.authorization.k8s.io";
|
||
|
kind = "ClusterRole";
|
||
|
name = "istiod-clusterrole-istio-system";
|
||
|
};
|
||
|
subjects = [
|
||
|
{
|
||
|
kind = "ServiceAccount";
|
||
|
name = "istiod";
|
||
|
namespace = "istio-system";
|
||
|
}
|
||
|
];
|
||
|
}
|