Fix nil dereference panics

Signed-off-by: Arjun Naik <arjun.rn@gmail.com>
This commit is contained in:
Arjun Naik 2019-04-04 10:22:25 +02:00
parent dfeae82cae
commit 14f13495af

View File

@ -174,7 +174,7 @@ func ParseHPAMetrics(hpa *autoscalingv2.HorizontalPodAutoscaler) ([]*MetricConfi
// TODO: validate that the specified metric names are defined
// in the HPA
var parser annotations.AnnotationConfigMap
parser := make(annotations.AnnotationConfigMap)
err := parser.Parse(hpa.Annotations)
if err != nil {
return nil, err