From d7b772769bab25d4843f27cf5cb6212784b2015d Mon Sep 17 00:00:00 2001 From: Guillaume Breton Date: Fri, 25 Oct 2019 14:45:07 +0200 Subject: [PATCH] Rename eviction-rate-limit-burst to eviction-rate-burst --- vertical-pod-autoscaler/pkg/updater/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vertical-pod-autoscaler/pkg/updater/main.go b/vertical-pod-autoscaler/pkg/updater/main.go index 75089ed16a1e..7f0e8adb3a4d 100644 --- a/vertical-pod-autoscaler/pkg/updater/main.go +++ b/vertical-pod-autoscaler/pkg/updater/main.go @@ -50,7 +50,7 @@ var ( `Number of pods that can be evicted per seconds. A rate limit set to 0 or -1 will disable the rate limiter.`) - evictionRateBurst = flag.Int("eviction-rate-limit-burst", 1, `Burst of pods that can be evicted.`) + evictionRateBurst = flag.Int("eviction-rate-burst", 1, `Burst of pods that can be evicted.`) address = flag.String("address", ":8943", "The address to expose Prometheus metrics.") )