blob: ee5df336151ef498dd24a8ad9ceb38ad6a8a32d8 (
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
|
classes:
- service.heat.server.cluster
- service.haproxy.proxy.single
- service.keepalived.cluster.single
- system.haproxy.proxy.listen.openstack.heat
parameters:
_param:
cluster_public_protocol: https
heat:
server:
stack_domain_admin:
name: heat_domain_admin
password: ${_param:heat_domain_admin_password}
domain: heat
enabled: true
region: ${_param:openstack_region}
version: ${_param:heat_version}
bind:
api_cfn:
address: ${_param:cluster_local_address}
api_cloudwatch:
address: ${_param:cluster_local_address}
api:
address: ${_param:cluster_local_address}
database:
engine: mysql
host: ${_param:openstack_database_address}
port: 3306
name: heat
user: heat
password: ${_param:mysql_heat_password}
metadata:
host: ${_param:cluster_public_host}
port: 8000
protocol: ${_param:cluster_public_protocol}
waitcondition:
host: ${_param:cluster_public_host}
port: 8000
protocol: ${_param:cluster_public_protocol}
watch:
host: ${_param:cluster_public_host}
port: 8003
protocol: ${_param:cluster_public_protocol}
identity:
engine: keystone
host: ${_param:cluster_vip_address}
port: 35357
tenant: service
user: heat
password: ${_param:keystone_heat_password}
message_queue:
engine: rabbitmq
port: 5672
user: openstack
password: ${_param:rabbitmq_openstack_password}
virtual_host: '/openstack'
members:
- host: ${_param:openstack_message_queue_node01_address}
- host: ${_param:openstack_message_queue_node02_address}
- host: ${_param:openstack_message_queue_node03_address}
|