From 85d6c809d19a8b2368473a0f3b7259f340c03e9c Mon Sep 17 00:00:00 2001 From: kfess Date: Sun, 10 May 2026 00:07:00 +0900 Subject: [PATCH] Fix inconsistent comment Kubernetes-commit: 36597e5cf9ea88c26e2309057de242d0a960ac68 --- pkg/cmd/autoscale/autoscale.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/autoscale/autoscale.go b/pkg/cmd/autoscale/autoscale.go index 92f60b494..d9de375bb 100644 --- a/pkg/cmd/autoscale/autoscale.go +++ b/pkg/cmd/autoscale/autoscale.go @@ -66,7 +66,7 @@ var ( kubectl autoscale deployment bar --min=3 --max=6 --cpu=500m --memory=200Mi # Auto scale a deployment "bar", with the number of pods between 2 and 8, target CPU utilization 60% and memory utilization 70% - kubectl autoscale deployment bar --min=3 --max=6 --cpu=60% --memory=70%`)) + kubectl autoscale deployment bar --min=2 --max=8 --cpu=60% --memory=70%`)) ) // AutoscaleOptions declares the arguments accepted by the Autoscale command