You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-role-nginx/openshift/openshift_ec2/roles/broker/templates/client.cfg.j2

25 lines
634 B

topicprefix = /topic/
main_collective = mcollective
collectives = mcollective
libdir = /opt/rh/ruby193/root/usr/libexec/mcollective
logfile = /var/log/mcollective-client.log
loglevel = debug
direct_addressing = 1
# Plugins
securityprovider = psk
plugin.psk = unset
connector = stomp
plugin.stomp.pool.size = {{ groups['mq']|length() }}
{% for host in groups['mq'] %}
plugin.stomp.pool.host{{ loop.index }} = {{ hostvars[host].ansible_hostname }}
plugin.stomp.pool.port{{ loop.index }} = 61613
plugin.stomp.pool.user{{ loop.index }} = mcollective
plugin.stomp.pool.password{{ loop.index }} = {{ mcollective_pass }}
{% endfor %}