~hopem/charms/trusty/glance/fix-ssl-inject

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/contrib/openstack/templates/zeromq

  • Committer: Edward Hope-Morley
  • Date: 2015-03-13 12:58:26 UTC
  • mfrom: (97.1.5 glance.pki)
  • Revision ID: edward.hope-morley@canonical.com-20150313125826-8iaqle3oq8jp66sz
[hopem,r=gnuoy]

Implement PKI token signing.

Closes-Bug: 1309667

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% if zmq_host -%}
2
 
# ZeroMQ configuration (restart-nonce: {{ zmq_nonce }})
3
 
rpc_backend = zmq
4
 
rpc_zmq_host = {{ zmq_host }}
5
 
{% if zmq_redis_address -%}
6
 
rpc_zmq_matchmaker = oslo.messaging._drivers.matchmaker_redis.MatchMakerRedis
7
 
matchmaker_heartbeat_freq = 15
8
 
matchmaker_heartbeat_ttl = 30
9
 
[matchmaker_redis]
10
 
host = {{ zmq_redis_address }}
11
 
{% else -%}
12
 
rpc_zmq_matchmaker = oslo.messaging._drivers.matchmaker_ring.MatchMakerRing
13
 
{% endif -%}
14
 
{% endif -%}