diff --git a/discovery/kubernetes/ingress_adaptor.go b/discovery/kubernetes/ingress_adaptor.go index c6c45cd2c..113a067ca 100644 --- a/discovery/kubernetes/ingress_adaptor.go +++ b/discovery/kubernetes/ingress_adaptor.go @@ -52,9 +52,7 @@ func (i *ingressAdaptorV1) ingressClassName() *string { return i.ingress.Sp func (i *ingressAdaptorV1) tlsHosts() []string { var hosts []string for _, tls := range i.ingress.Spec.TLS { - for _, host := range tls.Hosts { - hosts = append(hosts, host) - } + hosts = append(hosts, tls.Hosts...) } return hosts } @@ -107,9 +105,7 @@ func (i *ingressAdaptorV1Beta1) ingressClassName() *string { return i.ingre func (i *ingressAdaptorV1Beta1) tlsHosts() []string { var hosts []string for _, tls := range i.ingress.Spec.TLS { - for _, host := range tls.Hosts { - hosts = append(hosts, host) - } + hosts = append(hosts, tls.Hosts...) } return hosts }