Skip to content

Commit

Permalink
Increase node-density podReadyThreshold to 15s.
Browse files Browse the repository at this point in the history
5s is too low for what we are seeing on 4.14.

Partially resolves kube-burner#424, but does not unset by default.
  • Loading branch information
afcollins committed Aug 15, 2023
1 parent 3a23289 commit daa5aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/workloads/node-density.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func NewNodeDensity(wh *WorkloadHelper) *cobra.Command {
},
}
cmd.Flags().IntVar(&podsPerNode, "pods-per-node", 245, "Pods per node")
cmd.Flags().DurationVar(&podReadyThreshold, "pod-ready-threshold", 5*time.Second, "Pod ready timeout threshold")
cmd.Flags().DurationVar(&podReadyThreshold, "pod-ready-threshold", 15*time.Second, "Pod ready timeout threshold")
cmd.Flags().StringVar(&containerImage, "container-image", "gcr.io/google_containers/pause:3.1", "Container image")
return cmd
}

0 comments on commit daa5aee

Please sign in to comment.