~sdn-charmers/charms/trusty/contrail-configuration/trunk

1 by Robert Ayres
Initial charm
1
###############################################################################
2
# [ WARNING ]
3
# Configuration file maintained by Juju. Local changes may be overwritten.
4
###############################################################################
5
6
[DEFAULTS]
7
log_file = /var/log/contrail/contrail-schema.log
8
cassandra_server_list = {{ cassandra_servers|join(" ") }}
9
zk_server_ip = {{ zk_servers|join(",") }}
10
disc_server_ip = 127.0.0.1
21 by Robert Ayres
Update for newer PPAs
11
disc_server_port = {{ disc_port }}
13 by Robert Ayres
Fixes for 2.0+20141111 packages
12
api_server_port = {{ api_port }}
44 by Robert Ayres
Add support for contrail 3.0
13
{%- if rabbitmq %}
51 by Robert Ayres
Support multiple rabbitmq units, fixes lp #1566488
14
rabbit_server = {{ rabbit_servers|join(",") }}
44 by Robert Ayres
Add support for contrail 3.0
15
rabbit_user = {{ rabbit_user }}
16
rabbit_password = {{ rabbit_password }}
17
rabbit_vhost = {{ rabbit_vhost }}
70.1.2 by vincenzo di somma
Addinf TLS configuration to all other templates.
18
rabbit_use_ssl = {{ rabbit_use_ssl }}
44 by Robert Ayres
Add support for contrail 3.0
19
{%- endif %}
1 by Robert Ayres
Initial charm
20
21
[KEYSTONE]
22
admin_user = {{ admin_user }}
23
admin_password = {{ admin_password }}
24
admin_tenant_name = {{ admin_tenant_name }}
25
66 by Robert Ayres
Merge Ante Karamatic's changes (with modifications)
26
{%- if cassandra %}
27
65.1.1 by Ante Karamatic
Enable Cassandra authentication in Contrail
28
[CASSANDRA]
66 by Robert Ayres
Merge Ante Karamatic's changes (with modifications)
29
cassandra_user = {{ cassandra_user }}
65.1.1 by Ante Karamatic
Enable Cassandra authentication in Contrail
30
cassandra_password = {{ cassandra_password }}
66 by Robert Ayres
Merge Ante Karamatic's changes (with modifications)
31
32
{%- endif %}
33