fedmsg endpoints and certs for fedimg01.
This commit is contained in:
parent
d0768d6357
commit
f211a91092
3 changed files with 18 additions and 0 deletions
|
@ -42,6 +42,7 @@
|
||||||
- endpoints-mailman.py
|
- endpoints-mailman.py
|
||||||
- endpoints-summershum.py
|
- endpoints-summershum.py
|
||||||
- endpoints-kerneltest.py
|
- endpoints-kerneltest.py
|
||||||
|
- endpoints-fedimg.py
|
||||||
- endpoints-github2fedmsg.py
|
- endpoints-github2fedmsg.py
|
||||||
- endpoints-bugzilla2fedmsg.py
|
- endpoints-bugzilla2fedmsg.py
|
||||||
- relay.py
|
- relay.py
|
||||||
|
|
14
roles/fedmsg/base/templates/endpoints-fedimg.py.j2
Normal file
14
roles/fedmsg/base/templates/endpoints-fedimg.py.j2
Normal 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)
|
||||||
|
],
|
||||||
|
},
|
||||||
|
)
|
|
@ -34,6 +34,9 @@ config = dict(
|
||||||
] + [
|
] + [
|
||||||
("shell.github2fedmsg0%i" % i, "shell-github2fedmsg0%i.%s" % (i, suffix))
|
("shell.github2fedmsg0%i" % i, "shell-github2fedmsg0%i.%s" % (i, suffix))
|
||||||
for i in range(1, 3)
|
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))
|
("kerneltest.kerneltest0%i" % i, "kerneltest-kerneltest0%i.%s" % (i, suffix))
|
||||||
for i in range(1, 3)
|
for i in range(1, 3)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue