~corey.bryant/charms/trusty/ceilometer/git-ods

« back to all changes in this revision

Viewing changes to templates/icehouse/ceilometer.conf

  • Committer: Edward Hope-Morley
  • Date: 2015-03-13 12:57:45 UTC
  • mfrom: (67.2.11 ceilometer.pki)
  • Revision ID: edward.hope-morley@canonical.com-20150313125745-7e9jf5egpi14c9cg
[hopem,r=gnuoy]

Implement PKI token signing.

Closes-Bug: 1309667

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
debug = {{ debug }}
9
9
verbose = {{ verbose }}
10
10
use_syslog = {{ use_syslog }}
11
 
{% include "parts/rabbitmq" %}
 
11
 
 
12
{% include "parts/rabbitmq" -%}
 
13
 
12
14
[api]
13
15
port = {{ port }}
 
16
 
14
17
[service_credentials]
15
18
os_auth_url = {{ service_protocol }}://{{ service_host }}:{{ service_port }}/v2.0
16
19
os_tenant_name = {{ admin_tenant_name }}
17
20
os_username = {{ admin_user }}
18
21
os_password = {{ admin_password }}
 
22
 
19
23
[database]
20
24
{% if db_replset: -%}
21
25
connection = mongodb://{{ db_mongo_servers }}/{{ db_name }}?readPreference=primaryPreferred&replicaSet={{ db_replset }}
22
26
mongodb_replica_set = {{ db_replset }}
23
27
{% else -%}
24
28
connection = mongodb://{{ db_host }}:{{ db_port }}/{{ db_name }}
25
 
{% endif -%}
 
29
{% endif %}
 
30
 
26
31
[publisher_rpc]
27
32
metering_secret = {{ metering_secret }}
 
33
 
28
34
[keystone_authtoken]
29
35
auth_uri = {{ service_protocol }}://{{ service_host }}:{{ service_port }}/
30
36
auth_host = {{ auth_host }}
33
39
admin_tenant_name = {{ admin_tenant_name }}
34
40
admin_user = {{ admin_user }}
35
41
admin_password = {{ admin_password }}
36
 
 
 
42
signing_dir = {{ signing_dir }}