mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
k8s SD: Fix "schema" -> "scheme" typo (#4371)
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
f48ec3f2bb
commit
05d6d6a2e5
|
@ -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),
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue