From 5a0c1061a5e3e94b8d0ef6a7d17b7bf736726b3e Mon Sep 17 00:00:00 2001 From: Jose Castillo Lema Date: Wed, 29 Jan 2025 10:33:30 +0100 Subject: [PATCH] Increate vmi-ready-threshold timeout Signed-off-by: Jose Castillo Lema --- virt-density.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virt-density.go b/virt-density.go index 30eb6e1e..6ad593b9 100644 --- a/virt-density.go +++ b/virt-density.go @@ -53,7 +53,7 @@ func NewVirtDensity(wh *workloads.WorkloadHelper) *cobra.Command { }, } cmd.Flags().IntVar(&vmsPerNode, "vms-per-node", 245, "VMs per node") - cmd.Flags().DurationVar(&vmiRunningThreshold, "vmi-ready-threshold", 20*time.Second, "VMI ready timeout threshold") + cmd.Flags().DurationVar(&vmiRunningThreshold, "vmi-ready-threshold", 25*time.Second, "VMI ready timeout threshold") cmd.Flags().StringSliceVar(&metricsProfiles, "metrics-profile", []string{"metrics.yml"}, "Comma separated list of metrics profiles to use") return cmd }