Update types.go

line 35-36: "ClusterAutoscalerScaleUp is a condition that explains what is the current status of a node group with regard to scale down activities".
It should be "...up activities"
This commit is contained in:
AdamDang 2018-03-30 00:13:35 +08:00 committed by GitHub
parent 054d652e19
commit cefb7cc36d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ const (
// of a node group with regard to scale down activities.
ClusterAutoscalerScaleDown ClusterAutoscalerConditionType = "ScaleDown"
// ClusterAutoscalerScaleUp is a condition that explains what is the current status
// of a node group with regard to scale down activities.
// of a node group with regard to scale up activities.
ClusterAutoscalerScaleUp ClusterAutoscalerConditionType = "ScaleUp"
)