mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-12 01:42:02 +01:00
03b54bd52b
Signed-off-by: magic_rb <magic_rb@redalder.org>
23 lines
493 B
Nix
23 lines
493 B
Nix
{
|
|
apiVersion = "rbac.authorization.k8s.io/v1";
|
|
kind = "ClusterRoleBinding";
|
|
metadata = {
|
|
labels = {
|
|
app = "istiod";
|
|
release = "istio-istiod";
|
|
};
|
|
name = "istiod-gateway-controller-istio-system";
|
|
};
|
|
roleRef = {
|
|
apiGroup = "rbac.authorization.k8s.io";
|
|
kind = "ClusterRole";
|
|
name = "istiod-gateway-controller-istio-system";
|
|
};
|
|
subjects = [
|
|
{
|
|
kind = "ServiceAccount";
|
|
name = "istiod";
|
|
namespace = "istio-system";
|
|
}
|
|
];
|
|
}
|