aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/heat/templates/heat.j2
blob: d73bd70bb38c54f84bb92b8ed57079edf24f6658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% set memcached_servers = [] %}
{% for host in haproxy_hosts.values() %}
{% set _ = memcached_servers.append('%s:11211'% host) %}
{% endfor %}
{% set memcached_servers = memcached_servers|join(',') %}
{% if ansible_processor_vcpus > 5 %}
{%  set api_workers = ansible_processor_vcpus // 5 %}
{% else %}
{%  set api_workers = 1 %}
{% endif %}

[DEFAULT]
heat_metadata_server_url = http://{{ internal_vip.ip }}:8000
heat_waitcondition_server_url = http://{{ internal_vip.ip }}:8000/v1/waitcondition
rpc_backend = rabbit
log_dir = /var/log/heat
stack_domain_admin = heat_domain_admin
stack_domain_admin_password = {{ HEAT_PASS }}
stack_user_domain_name = heat
num_engine_workers = {{ api_workers}}

[heat_api]
workers = {{ api_workers }}

[database]
connection = mysql://heat:{{ HEAT_DBPASS }}@{{ db_host }}/heat
idle_timeout = 30
use_db_reconnect = True
pool_timeout = 10

[ec2authtoken]
auth_uri = http://{{ internal_vip.ip }}:5000

[clients_keystone]
auth_uri = http://{{ internal_vip.ip }}:35357

[keystone_authtoken]
auth_uri = http://{{ internal_vip.ip }}:5000
auth_url = http://{{ internal_vip.ip }}:35357
memcached_servers = {{ memcached_servers }}
auth_type = password
project_domain_name = default
user_domain_name = default
project_name = service
username = heat
password = {{ HEAT_PASS }}

identity_uri = http://{{ internal_vip.ip }}:35357
admin_tenant_name = service
admin_user = heat
admin_password = {{ HEAT_PASS }}

[oslo_messaging_rabbit]
rabbit_host = {{ rabbit_host }}
rabbit_userid = {{ RABBIT_USER }}
rabbit_password = {{ RABBIT_PASS }}

[trustee]
auth_type = password
auth_url = http://{{ internal_vip.ip }}:35357
username = heat
password = {{ HEAT_PASS }}
user_domain_name = default