Skip to content

Instantly share code, notes, and snippets.

@jacobat
Created May 13, 2015 15:41
Show Gist options
  • Save jacobat/340f0718768f89a79e40 to your computer and use it in GitHub Desktop.
Save jacobat/340f0718768f89a79e40 to your computer and use it in GitHub Desktop.
{{ range services }}{{ with $serviceMap := .}}{{ range $serviceMap.Tags }}{{ if . | regexMatch "load_balance" }}
frontend {{ $serviceMap.Name }}-in
bind *:{{ range $serviceMap.Tags }}{{ if . | regexMatch "port:" }}{{ . | regexReplaceAll ".*:(.*)" "$1" }}{{end}}{{end}}
default_backend {{ $serviceMap.Name }}:{{ range $serviceMap.Tags }}{{ if . | regexMatch "role:" }}{{ . | regexReplaceAll ".*:(.*)" "$1" }}{{end}}{{end}}
backend {{ $serviceMap.Name }}:{{ range $serviceMap.Tags }}{{ if . | regexMatch "role:" }}{{ . | regexReplaceAll ".*:(.*)" "$1" }}{{end}}{{end}}
balance roundrobin
option httpchk
option httplog
{{range service $serviceMap.Name }}
server {{.Node}} {{.NodeAddress}}:{{.Port}} check port {{.Port}}{{end}}
{{end}}{{end}}{{end}}{{end}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment