mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-12 18:01:59 +01:00
69b84c09af
Signed-off-by: magic_rb <magic_rb@redalder.org>
45 lines
886 B
Nix
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";
|
|
};
|
|
};
|
|
}
|