~chris-gondolin/charms/trusty/keystone/ldap-ca-cert

« back to all changes in this revision

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

  • Committer: billy.olsen at canonical
  • Date: 2015-08-31 17:35:57 UTC
  • mfrom: (170.1.39 stable.remote)
  • Revision ID: billy.olsen@canonical.com-20150831173557-0r0ftkapbitq0s20
[ack,r=billy-olsen,1chb1n,tealeg,adam-collard] Add pause/resume actions to keystone.

This changes introduces the pause and resume action set to the keystone charm. These
actions can be used to pause keystone services on a unit for maintenance activities.

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 = redis
7
 
matchmaker_heartbeat_freq = 15
8
 
matchmaker_heartbeat_ttl = 30
9
 
[matchmaker_redis]
10
 
host = {{ zmq_redis_address }}
11
 
{% else -%}
12
 
rpc_zmq_matchmaker = ring
13
 
{% endif -%}
14
 
{% endif -%}