From 766e1c3a3e96ec2ae6a3ce141b1d16acf1175f23 Mon Sep 17 00:00:00 2001 From: Mike Danese Date: Tue, 18 Aug 2015 09:49:05 -0700 Subject: [PATCH] tab => space, to fix compatibility with reflect.StructTag.Get --- pkg/expapi/v1/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/expapi/v1/types.go b/pkg/expapi/v1/types.go index 9b3a65b47b5..512f55e4c98 100644 --- a/pkg/expapi/v1/types.go +++ b/pkg/expapi/v1/types.go @@ -80,7 +80,7 @@ type HorizontalPodAutoscalerSpec struct { MaxCount int `json:"maxCount" description:"upper limit for the number of pods"` // Target is the target average consumption of the given resource that the autoscaler will try to maintain by adjusting the desired number of pods. // Currently two types of resources are supported: "cpu" and "memory". - Target ResourceConsumption `json:"target" description:"target average consumption of resource that the autoscaler will try to maintain by adjusting the desired number of pods"` + Target ResourceConsumption `json:"target" description:"target average consumption of resource that the autoscaler will try to maintain by adjusting the desired number of pods"` } // HorizontalPodAutoscalerStatus contains the current status of a horizontal pod autoscaler