Add endpoints and fedmsg cert declarations for github2fedmsg and kerneltest.

This commit is contained in:
Ralph Bean 2014-06-16 18:47:15 +00:00
parent da3d99b727
commit 20b6ff52b1
4 changed files with 48 additions and 0 deletions

View file

@ -40,6 +40,8 @@
- endpoints-nuancier.py - endpoints-nuancier.py
- endpoints-mailman.py - endpoints-mailman.py
- endpoints-summershum.py - endpoints-summershum.py
- endpoints-kerneltest.py
- endpoints-github2fedmsg.py
- relay.py - relay.py
- pkgdb.py - pkgdb.py
- logging.py - logging.py

View file

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

View file

@ -0,0 +1,20 @@
{% if env == 'staging' %}
suffix = 'stg.phx2.fedoraproject.org'
{% else %}
suffix = 'phx2.fedoraproject.org'
{% endif %}
config = dict(
endpoints={
"frontend.kerneltest01": [
"tcp://kerneltest01.%s:30%02i" % (suffix, i)
for i in range(16)
],
{% if env != 'staging' %}
"frontend.kerneltest02": [
"tcp://kerneltest02.%s:30%02i" % (suffix, i)
for i in range(16)
],
{% endif %}
},
)

View file

@ -25,6 +25,18 @@ config = dict(
certnames=dict( certnames=dict(
[ [
("github2fedmsg.github2fedmsg0%i" % i, "github2fedmsg-github2fedmsg0%i.%s" % (i, suffix))
for i in range(1, 3)
] + [
("shell.github2fedmsg0%i" % i, "shell-github2fedmsg0%i.%s" % (i, suffix))
for i in range(1, 3)
] + [
("frontend.kerneltest0%i" % i, "frontend-kerneltest0%i.%s" % (i, suffix))
for i in range(1, 3)
] + [
("shell.kerneltest0%i" % i, "shell-kerneltest0%i.%s" % (i, suffix))
for i in range(1, 3)
] + [
("shell.notifs-web0%i" % i, "shell-notifs-web0%i.%s" % (i, suffix)) ("shell.notifs-web0%i" % i, "shell-notifs-web0%i.%s" % (i, suffix))
for i in range(1, 3) for i in range(1, 3)
] + [ ] + [