A role for bugzilla2fedmsg.

This commit is contained in:
Ralph Bean 2014-06-24 14:32:06 +00:00
parent c760b15d9f
commit e3f8c50b23
8 changed files with 121 additions and 21 deletions

View file

@ -0,0 +1,30 @@
# moksha configuration without fedmsg
[app:main]
# Some configuration for our workers
bugzilla.products = Fedora, Fedora EPEL
# If you have 8 worker threads you *also* need 8 fedmsg endpoints in fedmsg.d/
# and 8 open holes in the firewall
bugzilla.num_workers = 2
# These are credentials used to log in to bugzilla
bugzilla.url = https://bugzilla.redhat.com
bugzilla.username = {{ bugzilla_user }}
bugzilla.password = {{ bugzilla_password }}
# Stomp broker configuration.
{% if env == 'staging %}
stomp_uri = fuse-fabric-01.stg.jboss.org:61617,fuse-fabric-02.stg.jboss.org:61617,fuse-fabric-03.stg.jboss.org:61617
stomp_ssl_crt = /etc/fedmsg/pki/fedora.devel.engineering.redhat.com.crt
stomp_ssl_key = /etc/fedmsg/pki/fedora.devel.engineering.redhat.com.key
{% else %}
stomp_uri = fuse-fabric-01.jboss.org:61617,fuse-fabric-02.jboss.org:61617,fuse-fabric-03.jboss.org:61617
stomp_ssl_crt = /etc/fedmsg/pki/fuse-fabric-fedoraproject.org.crt
stomp_ssl_key = /etc/fedmsg/pki/fuse-fabric-fedoraproject.org.key
{% endif %}
stomp_user = {{ redhat_dmz_broker_username }}
stomp_pass = {{ redhat_dmz_broker_password }}