mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-11 17:31:58 +01:00
69b84c09af
Signed-off-by: magic_rb <magic_rb@redalder.org>
23 lines
500 B
Nix
23 lines
500 B
Nix
{
|
|
apiVersion = "rbac.authorization.k8s.io/v1";
|
|
kind = "ClusterRoleBinding";
|
|
metadata = {
|
|
labels = {
|
|
app = "istiod";
|
|
release = "istio-istiod";
|
|
};
|
|
name = "istiod-clusterrole-1-20-2-istio-system";
|
|
};
|
|
roleRef = {
|
|
apiGroup = "rbac.authorization.k8s.io";
|
|
kind = "ClusterRole";
|
|
name = "istiod-clusterrole-1-20-2-istio-system";
|
|
};
|
|
subjects = [
|
|
{
|
|
kind = "ServiceAccount";
|
|
name = "istiod-1-20-2";
|
|
namespace = "istio-system";
|
|
}
|
|
];
|
|
}
|