From cc5b031f5236e9fbadb284c0a22eb4e4bcd9c65c Mon Sep 17 00:00:00 2001 From: Prachi Gandhi <73401862+gandhipr@users.noreply.github.com> Date: Thu, 28 Mar 2024 09:02:50 -0700 Subject: [PATCH] review comments Co-authored-by: Alex Leites <18728999+tallaxes@users.noreply.github.com> --- cluster-autoscaler/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-autoscaler/main.go b/cluster-autoscaler/main.go index 001cf4954042..5ae7caf6e594 100644 --- a/cluster-autoscaler/main.go +++ b/cluster-autoscaler/main.go @@ -258,7 +258,7 @@ var ( "Priority evictor reuses the concepts of drain logic in kubelet(https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/2712-pod-priority-based-graceful-node-shutdown#migration-from-the-node-graceful-shutdown-feature)."+ "Eg. flag usage: '10000:20,1000:100,0:60'") provisioningRequestsEnabled = flag.Bool("enable-provisioning-requests", false, "Whether the clusterautoscaler will be handling the ProvisioningRequest CRs.") - maxCloudProviderNodeDeletionTime = flag.Duration("max-cloud-provider-node-deletion-time", 5*time.Minute, "Maximum time needed by cloud provider to delete a node") + maxCloudProviderNodeDeletionTime = flag.Duration("max-cloud-provider-node-deletion-time", 5*time.Minute, "Maximum time needed by cloud provider to delete a node.") ) func isFlagPassed(name string) bool {