blob: 14b765630fefd8c70c694400a09d2e154d40dce4 [file] [log] [blame]
marco943eef82016-10-05 17:59:13 +02001parameters:
Dennis Dmitriev09650272017-03-09 17:51:00 +02002 _param:
3 heat_client_default_endpoint_type: internalURL
4 heat_client_heat_endpoint_type: publicURL
marco943eef82016-10-05 17:59:13 +02005 kubernetes:
6 control:
7 configmap:
8 heat-server:
9 grains:
10 os_family: Debian
11 pillar:
12 heat:
13 server:
14 stack_domain_admin:
15 name: heat_domain_admin
16 password: ${_param:heat_domain_admin_password}
17 domain: heat
18 enabled: true
19 region: RegionOne
20 version: ${_param:heat_version}
21 bind:
22 api_cfn:
23 address: 0.0.0.0
24 api_cloudwatch:
25 address: 0.0.0.0
26 api:
27 address: 0.0.0.0
28 database:
29 engine: mysql
30 host: ${_param:mysql_service_host}
31 port: 3306
32 name: heat
33 user: heat
34 password: ${_param:mysql_heat_password}
35 metadata:
36 host: 0.0.0.0
37 port: 8000
Oleksii Chupryncd1be6f2017-04-07 09:30:26 +030038 protocol: http
marco943eef82016-10-05 17:59:13 +020039 waitcondition:
40 host: 0.0.0.0
41 port: 8000
Oleksii Chupryncd1be6f2017-04-07 09:30:26 +030042 protocol: http
marco943eef82016-10-05 17:59:13 +020043 watch:
44 host: 0.0.0.0
45 port: 8003
Oleksii Chupryncd1be6f2017-04-07 09:30:26 +030046 protocol: http
marco943eef82016-10-05 17:59:13 +020047 identity:
48 engine: keystone
49 host: ${_param:keystone_service_host}
50 port: 35357
51 tenant: service
52 user: heat
53 password: ${_param:keystone_heat_password}
Dennis Dmitriev09650272017-03-09 17:51:00 +020054 endpoint_type_default: ${_param:heat_client_default_endpoint_type}
55 endpoint_type_heat: ${_param:heat_client_heat_endpoint_type}
marco943eef82016-10-05 17:59:13 +020056 message_queue:
57 engine: rabbitmq
58 host: ${_param:rabbitmq_service_host}
59 port: 5672
60 user: openstack
61 password: ${_param:rabbitmq_openstack_password}
Oleksii Chupryncd1be6f2017-04-07 09:30:26 +030062 virtual_host: '/openstack'