From 8230756006e5506cc0c068bf70fd7537d46ee0bb Mon Sep 17 00:00:00 2001 From: Himanshu Sharma Date: Thu, 3 Mar 2022 15:52:57 +0530 Subject: [PATCH] typo corrected --- pkg/controller/deployment_util.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/controller/deployment_util.go b/pkg/controller/deployment_util.go index 919bb1107..7bdd38312 100644 --- a/pkg/controller/deployment_util.go +++ b/pkg/controller/deployment_util.go @@ -113,11 +113,11 @@ const ( // ClusterAutoscalerScaleDownDisabledAnnotationKey annotation to disable the scale-down of the nodes. ClusterAutoscalerScaleDownDisabledAnnotationKey = "cluster-autoscaler.kubernetes.io/scale-down-disabled" // ClusterAutoscalerScaleDownDisabledAnnotationValue annotation to disable the scale-down of the nodes. - ClusterAutoscalerScaleDownDisabledAnnotationValue = "True" + ClusterAutoscalerScaleDownDisabledAnnotationValue = "true" // ClusterAutoscalerScaleDownDisabledAnnotationByMCMKey annotation to disable the scale-down of the nodes. ClusterAutoscalerScaleDownDisabledAnnotationByMCMKey = "cluster-autoscaler.kubernetes.io/scale-down-disabled-by-mcm" // ClusterAutoscalerScaleDownDisabledAnnotationByMCMValue annotation to disable the scale-down of the nodes. - ClusterAutoscalerScaleDownDisabledAnnotationByMCMValue = "True" + ClusterAutoscalerScaleDownDisabledAnnotationByMCMValue = "true" // RollbackRevisionNotFound is not found rollback event reason RollbackRevisionNotFound = "DeploymentRollbackRevisionNotFound"