1
0
Fork 0
This commit is contained in:
emile 2015-09-10 16:46:27 +02:00
parent 4dc5b34122
commit e2d2f1f1d1
7 changed files with 14 additions and 186 deletions

View file

@ -28,7 +28,7 @@ var MarathonFuncMap = template.FuncMap{
},
"getHost": func(application marathon.Application) string {
for key, value := range application.Labels {
if (key == "træfik.host") {
if (key == "traefik.host") {
return value
}
}
@ -36,7 +36,7 @@ var MarathonFuncMap = template.FuncMap{
},
"getWeight": func(application marathon.Application) string {
for key, value := range application.Labels {
if (key == "træfik.weight") {
if (key == "traefik.weight") {
return value
}
}