ansible/files/fedmsg/endpoints-fedbadges.py.j2

26 lines
573 B
Text
Raw Normal View History

2013-06-14 04:25:04 +00:00
{% if env == 'staging' %}
suffix = 'stg.phx2.fedoraproject.org'
{% else %}
suffix = 'phx2.fedoraproject.org'
{% endif %}
config = dict(
endpoints={
"fedbadges.badges-backend01": [
2013-06-14 04:51:29 +00:00
"tcp://badges-backend01.%s:3000" % suffix,
2013-06-14 04:25:04 +00:00
],
2013-08-05 20:08:57 +00:00
"tahrir.badges-web01": [
2013-08-05 19:16:27 +00:00
"tcp://badges-web01.%s:30%02i" % (suffix, i)
for i in range(16)
],
2013-08-05 19:20:58 +00:00
{% if env != 'staging' %}
2013-08-05 20:08:57 +00:00
"tahrir.badges-web02": [
2013-08-05 19:16:27 +00:00
"tcp://badges-web02.%s:30%02i" % (suffix, i)
for i in range(16)
],
2013-08-05 19:20:58 +00:00
{% endif %}
2013-06-14 04:25:04 +00:00
},
)