dotfiles/terranix/main/kubernetes/generated/istio-istiod/istio-system.HorizontalPodAutoscaler.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

36 lines
774 B
Nix

{
apiVersion = "autoscaling/v2";
kind = "HorizontalPodAutoscaler";
metadata = {
labels = {
app = "istiod";
"install.operator.istio.io/owning-resource" = "unknown";
"istio.io/rev" = "1-20-2";
"operator.istio.io/component" = "Pilot";
release = "istio-istiod";
};
name = "istiod-1-20-2";
namespace = "istio-system";
};
spec = {
maxReplicas = 5;
metrics = [
{
resource = {
name = "cpu";
target = {
averageUtilization = 80;
type = "Utilization";
};
};
type = "Resource";
}
];
minReplicas = 1;
scaleTargetRef = {
apiVersion = "apps/v1";
kind = "Deployment";
name = "istiod-1-20-2";
};
};
}