2014-06-24 14:32:06 +00:00
|
|
|
# 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
|
2014-09-09 01:09:00 +00:00
|
|
|
bugzilla.num_workers = 1
|
|
|
|
moksha.workers_per_consumer = 2
|
|
|
|
moksha.threadpool_size = 5
|
2014-06-24 14:32:06 +00:00
|
|
|
|
|
|
|
# These are credentials used to log in to bugzilla
|
2014-08-05 12:41:33 +00:00
|
|
|
{% if env == 'staging' %}
|
|
|
|
bugzilla.url = https://partner-bugzilla.redhat.com
|
|
|
|
{% else %}
|
2014-06-24 14:32:06 +00:00
|
|
|
bugzilla.url = https://bugzilla.redhat.com
|
2014-08-05 12:41:33 +00:00
|
|
|
{% endif %}
|
2014-06-24 14:32:06 +00:00
|
|
|
bugzilla.username = {{ bugzilla_user }}
|
|
|
|
bugzilla.password = {{ bugzilla_password }}
|
|
|
|
|
|
|
|
# Stomp broker configuration.
|
2014-07-25 15:59:06 +00:00
|
|
|
{% if env == 'staging' %}
|
2015-10-30 15:03:49 +00:00
|
|
|
stomp_uri = messaging-devops-broker01.dev1.ext.devlab.redhat.com:61612,messaging-devops-broker02.dev1.ext.devlab.redhat.com:61612
|
2014-10-15 13:57:10 +00:00
|
|
|
|
2015-10-30 15:08:09 +00:00
|
|
|
stomp_ssl_crt = /etc/pki/fedmsg/msg-client-fedora-dev.crt
|
|
|
|
stomp_ssl_key = /etc/pki/fedmsg/msg-client-fedora-dev.key
|
2015-10-30 15:03:49 +00:00
|
|
|
|
|
|
|
stomp_user = {{ redhat_dmz_dev_broker_username }}
|
|
|
|
stomp_pass = {{ redhat_dmz_dev_broker_password }}
|
2014-07-25 15:59:06 +00:00
|
|
|
{% else %}
|
2014-06-24 14:32:06 +00:00
|
|
|
stomp_uri = fuse-fabric-01.jboss.org:61617,fuse-fabric-02.jboss.org:61617,fuse-fabric-03.jboss.org:61617
|
2015-10-30 15:03:49 +00:00
|
|
|
|
2014-06-24 15:12:53 +00:00
|
|
|
stomp_ssl_crt = /etc/pki/fedmsg/fuse-fabric-fedoraproject.org.crt
|
|
|
|
stomp_ssl_key = /etc/pki/fedmsg/fuse-fabric-fedoraproject.org.key
|
2015-10-30 15:03:49 +00:00
|
|
|
|
|
|
|
stomp_user = {{ redhat_dmz_prod_broker_username }}
|
|
|
|
stomp_pass = {{ redhat_dmz_prod_broker_password }}
|
2014-07-25 15:59:06 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2014-09-16 15:00:08 +00:00
|
|
|
stomp_heartbeat = 1000
|
2014-06-24 14:32:06 +00:00
|
|
|
|
2014-09-09 01:00:14 +00:00
|
|
|
moksha.monitoring.socket = ipc:///var/run/fedmsg/monitoring-moksha-hub.socket
|
|
|
|
moksha.monitoring.socket.mode = 770
|