consul/kv.tmpl: weight default value should be a int (#826)

* consul/kv.tmpl: weight default value should be a int

Fix #821

* Use 0 as default weight in all backends
This commit is contained in:
Kristian Klausen 2016-11-23 14:49:55 +01:00 committed by Emile Vauge
parent fe1b982d13
commit a8cb905255
8 changed files with 34 additions and 34 deletions

View file

@ -262,7 +262,7 @@ func (provider *Kubernetes) loadIngresses(k8sClient k8s.Client) (*types.Configur
log.Warnf("Endpoints not found for %s/%s, falling back to Service ClusterIP", service.ObjectMeta.Namespace, service.ObjectMeta.Name)
templateObjects.Backends[r.Host+pa.Path].Servers[string(service.UID)] = types.Server{
URL: protocol + "://" + service.Spec.ClusterIP + ":" + strconv.Itoa(port.Port),
Weight: 1,
Weight: 0,
}
} else {
for _, subset := range endpoints.Subsets {
@ -274,7 +274,7 @@ func (provider *Kubernetes) loadIngresses(k8sClient k8s.Client) (*types.Configur
}
templateObjects.Backends[r.Host+pa.Path].Servers[name] = types.Server{
URL: url,
Weight: 1,
Weight: 0,
}
}
}