From 151a7d2731d3526e7d11e899ebc652c080db86fb Mon Sep 17 00:00:00 2001 From: Matt Brown Date: Mon, 29 Jan 2018 13:01:43 -0500 Subject: [PATCH] correct typo in HorizontalPodAutoscaler status condition "succesfully" => "successfully" --- pkg/controller/podautoscaler/horizontal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/podautoscaler/horizontal.go b/pkg/controller/podautoscaler/horizontal.go index 65a7a6f1702..efad1231119 100644 --- a/pkg/controller/podautoscaler/horizontal.go +++ b/pkg/controller/podautoscaler/horizontal.go @@ -313,7 +313,7 @@ func (a *HorizontalController) computeReplicasForMetrics(hpa *autoscalingv2.Hori } } - setCondition(hpa, autoscalingv2.ScalingActive, v1.ConditionTrue, "ValidMetricFound", "the HPA was able to succesfully calculate a replica count from %s", metric) + setCondition(hpa, autoscalingv2.ScalingActive, v1.ConditionTrue, "ValidMetricFound", "the HPA was able to successfully calculate a replica count from %s", metric) return replicas, metric, statuses, timestamp, nil }