dotfiles/terranix/main/kubernetes/generated/istio-istiod/istio-system.Service.istiod-1-20-2.nix
magic_rb 69b84c09af
Bump uk3s.nix
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-04-07 14:02:17 +02:00

45 lines
886 B
Nix

{
apiVersion = "v1";
kind = "Service";
metadata = {
labels = {
app = "istiod";
"install.operator.istio.io/owning-resource" = "unknown";
istio = "pilot";
"istio.io/rev" = "1-20-2";
"operator.istio.io/component" = "Pilot";
release = "istio-istiod";
};
name = "istiod-1-20-2";
namespace = "istio-system";
};
spec = {
ports = [
{
name = "grpc-xds";
port = 15010;
protocol = "TCP";
}
{
name = "https-dns";
port = 15012;
protocol = "TCP";
}
{
name = "https-webhook";
port = 443;
protocol = "TCP";
targetPort = 15017;
}
{
name = "http-monitoring";
port = 15014;
protocol = "TCP";
}
];
selector = {
app = "istiod";
"istio.io/rev" = "1-20-2";
};
};
}