blob: 7bbc2aca4ff9b9194bb824e051bba3e57588ca2a [file] [log] [blame]
Ondrej Smola03ff34e2016-12-01 01:30:33 +01001classes:
2- service.heat.server.cluster
3- service.haproxy.proxy.single
4- service.keepalived.cluster.single
5- system.haproxy.proxy.listen.openstack.heat
Oleksandr Shyshkob3632d52018-08-30 17:08:08 +03006- system.salt.minion.cert.mysql.clients.openstack.heat
Ondrej Smola03ff34e2016-12-01 01:30:33 +01007parameters:
Oleksii Chupryn61baa812017-04-07 13:11:37 +03008 _param:
Vasyl Saienko047166c2018-03-09 11:17:45 +02009 cluster_public_protocol: 'https'
10 cluster_internal_protocol: 'http'
Oleksandr Shyshkob3632d52018-08-30 17:08:08 +030011 openstack_mysql_x509_enabled: False
12 galera_ssl_enabled: False
Andrey Shestakov0c7e1102017-08-10 13:39:04 +030013 linux:
14 system:
15 package:
16 python-pymysql:
17 fromrepo: ${_param:openstack_version}
18 version: latest
Ondrej Smola03ff34e2016-12-01 01:30:33 +010019 heat:
20 server:
21 stack_domain_admin:
22 name: heat_domain_admin
23 password: ${_param:heat_domain_admin_password}
24 domain: heat
25 enabled: true
Pavel Cizinsky3f8377d2017-03-02 15:17:23 +010026 region: ${_param:openstack_region}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010027 version: ${_param:heat_version}
Vasyl Saienko01eb3172018-07-16 13:44:53 +030028 role: ${_param:openstack_node_role}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010029 bind:
30 api_cfn:
31 address: ${_param:cluster_local_address}
32 api_cloudwatch:
33 address: ${_param:cluster_local_address}
34 api:
35 address: ${_param:cluster_local_address}
36 database:
37 engine: mysql
38 host: ${_param:openstack_database_address}
39 port: 3306
40 name: heat
41 user: heat
42 password: ${_param:mysql_heat_password}
Oleksandr Shyshkob3632d52018-08-30 17:08:08 +030043 x509:
44 enabled: ${_param:openstack_mysql_x509_enabled}
45 ca_file: ${_param:mysql_heat_ssl_ca_file}
46 key_file: ${_param:mysql_heat_client_ssl_key_file}
47 cert_file: ${_param:mysql_heat_client_ssl_cert_file}
48 ssl:
49 enabled: ${_param:galera_ssl_enabled}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010050 metadata:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030051 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010052 port: 8000
Oleksii Chupryn2c877942017-04-07 10:02:32 +030053 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010054 waitcondition:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030055 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010056 port: 8000
Oleksii Chupryn2c877942017-04-07 10:02:32 +030057 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010058 watch:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030059 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010060 port: 8003
Oleksii Chupryn2c877942017-04-07 10:02:32 +030061 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010062 identity:
63 engine: keystone
64 host: ${_param:cluster_vip_address}
65 port: 35357
66 tenant: service
67 user: heat
68 password: ${_param:keystone_heat_password}
Vasyl Saienko047166c2018-03-09 11:17:45 +020069 protocol: ${_param:cluster_internal_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010070 message_queue:
71 engine: rabbitmq
72 port: 5672
73 user: openstack
74 password: ${_param:rabbitmq_openstack_password}
75 virtual_host: '/openstack'
76 members:
77 - host: ${_param:openstack_message_queue_node01_address}
78 - host: ${_param:openstack_message_queue_node02_address}
Pavel Cizinsky3f8377d2017-03-02 15:17:23 +010079 - host: ${_param:openstack_message_queue_node03_address}