ansible/roles/fedmsg/base/templates/endpoints-fmn-web.py.j2

19 lines
423 B
Text
Raw Normal View History

{% if env == 'staging' %}
suffix = 'stg.phx2.fedoraproject.org'
{% else %}
suffix = 'phx2.fedoraproject.org'
{% endif %}
config = dict(
endpoints={
"fmn.notifs-web01": [
2014-06-11 19:13:22 +00:00
"tcp://notifs-web01.%s:30%0.2i" % (suffix, i)
for i in range(16)
],
"fmn.notifs-web02": [
2014-06-11 19:13:22 +00:00
"tcp://notifs-web02.%s:30%0.2i" % (suffix, i)
for i in range(16)
],
},
)