k8s SD: Fix "schema" -> "scheme" typo (#4371)

Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
Julius Volz 2018-07-12 16:12:32 +02:00 committed by GitHub
parent f48ec3f2bb
commit 05d6d6a2e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -186,16 +186,16 @@ func (s *Ingress) buildIngress(ingress *v1beta1.Ingress) *targetgroup.Group {
for _, rule := range ingress.Spec.Rules { for _, rule := range ingress.Spec.Rules {
paths := pathsFromIngressRule(&rule.IngressRuleValue) paths := pathsFromIngressRule(&rule.IngressRuleValue)
schema := "http" scheme := "http"
_, isTLS := tlsHosts[rule.Host] _, isTLS := tlsHosts[rule.Host]
if isTLS { if isTLS {
schema = "https" scheme = "https"
} }
for _, path := range paths { for _, path := range paths {
tg.Targets = append(tg.Targets, model.LabelSet{ tg.Targets = append(tg.Targets, model.LabelSet{
model.AddressLabel: lv(rule.Host), model.AddressLabel: lv(rule.Host),
ingressSchemeLabel: lv(schema), ingressSchemeLabel: lv(scheme),
ingressHostLabel: lv(rule.Host), ingressHostLabel: lv(rule.Host),
ingressPathLabel: lv(path), ingressPathLabel: lv(path),
}) })