fedmsg endpoints and certs for fedimg01.

This commit is contained in:
Ralph Bean 2014-07-09 14:15:47 +00:00
parent d0768d6357
commit f211a91092
3 changed files with 18 additions and 0 deletions

View file

@ -42,6 +42,7 @@
- endpoints-mailman.py
- endpoints-summershum.py
- endpoints-kerneltest.py
- endpoints-fedimg.py
- endpoints-github2fedmsg.py
- endpoints-bugzilla2fedmsg.py
- relay.py

View file

@ -0,0 +1,14 @@
{% if env == 'staging' %}
suffix = 'stg.phx2.fedoraproject.org'
{% else %}
suffix = 'phx2.fedoraproject.org'
{% endif %}
config = dict(
endpoints={
"fedimg.fedimg01": [
"tcp://fedimg01.%s:30%0.2i" % (suffix, i)
for i in range(4)
],
},
)

View file

@ -34,6 +34,9 @@ config = dict(
] + [
("shell.github2fedmsg0%i" % i, "shell-github2fedmsg0%i.%s" % (i, suffix))
for i in range(1, 3)
] + [
("fedimg.fedimg01", "fedimg-fedimg01.%s" % suffix),
("shell.fedimg01", "shell-fedimg01.%s" % suffix),
] + [
("kerneltest.kerneltest0%i" % i, "kerneltest-kerneltest0%i.%s" % (i, suffix))
for i in range(1, 3)