blob: 4504e898c5f50559ec1fe8c9ab09e0edda0e7c05 [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
Oleksandr Bryndziica6cb312018-09-12 13:53:15 +00007- system.salt.minion.cert.rabbitmq.clients.openstack.heat
Ondrej Smola03ff34e2016-12-01 01:30:33 +01008parameters:
Oleksii Chupryn61baa812017-04-07 13:11:37 +03009 _param:
Vasyl Saienko047166c2018-03-09 11:17:45 +020010 cluster_public_protocol: 'https'
11 cluster_internal_protocol: 'http'
Oleksandr Shyshkob3632d52018-08-30 17:08:08 +030012 openstack_mysql_x509_enabled: False
Oleksandr Bryndziica6cb312018-09-12 13:53:15 +000013 openstack_rabbitmq_x509_enabled: False
Oleksandr Shyshkob3632d52018-08-30 17:08:08 +030014 galera_ssl_enabled: False
Oleksandr Bryndziica6cb312018-09-12 13:53:15 +000015 rabbitmq_ssl_enabled: False
Andrey Shestakov0c7e1102017-08-10 13:39:04 +030016 linux:
17 system:
18 package:
19 python-pymysql:
20 fromrepo: ${_param:openstack_version}
21 version: latest
Ondrej Smola03ff34e2016-12-01 01:30:33 +010022 heat:
23 server:
24 stack_domain_admin:
25 name: heat_domain_admin
26 password: ${_param:heat_domain_admin_password}
27 domain: heat
28 enabled: true
Pavel Cizinsky3f8377d2017-03-02 15:17:23 +010029 region: ${_param:openstack_region}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010030 version: ${_param:heat_version}
Vasyl Saienko01eb3172018-07-16 13:44:53 +030031 role: ${_param:openstack_node_role}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010032 bind:
33 api_cfn:
34 address: ${_param:cluster_local_address}
35 api_cloudwatch:
36 address: ${_param:cluster_local_address}
37 api:
38 address: ${_param:cluster_local_address}
39 database:
40 engine: mysql
41 host: ${_param:openstack_database_address}
42 port: 3306
43 name: heat
44 user: heat
45 password: ${_param:mysql_heat_password}
Oleksandr Shyshkob3632d52018-08-30 17:08:08 +030046 x509:
47 enabled: ${_param:openstack_mysql_x509_enabled}
48 ca_file: ${_param:mysql_heat_ssl_ca_file}
49 key_file: ${_param:mysql_heat_client_ssl_key_file}
50 cert_file: ${_param:mysql_heat_client_ssl_cert_file}
51 ssl:
52 enabled: ${_param:galera_ssl_enabled}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010053 metadata:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030054 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010055 port: 8000
Oleksii Chupryn2c877942017-04-07 10:02:32 +030056 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010057 waitcondition:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030058 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010059 port: 8000
Oleksii Chupryn2c877942017-04-07 10:02:32 +030060 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010061 watch:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030062 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010063 port: 8003
Oleksii Chupryn2c877942017-04-07 10:02:32 +030064 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010065 identity:
66 engine: keystone
67 host: ${_param:cluster_vip_address}
68 port: 35357
69 tenant: service
70 user: heat
71 password: ${_param:keystone_heat_password}
Vasyl Saienko047166c2018-03-09 11:17:45 +020072 protocol: ${_param:cluster_internal_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010073 message_queue:
74 engine: rabbitmq
75 port: 5672
76 user: openstack
77 password: ${_param:rabbitmq_openstack_password}
78 virtual_host: '/openstack'
79 members:
80 - host: ${_param:openstack_message_queue_node01_address}
81 - host: ${_param:openstack_message_queue_node02_address}
Pavel Cizinsky3f8377d2017-03-02 15:17:23 +010082 - host: ${_param:openstack_message_queue_node03_address}
Oleksandr Bryndziica6cb312018-09-12 13:53:15 +000083 x509:
84 enabled: ${_param:openstack_rabbitmq_x509_enabled}
85 ca_file: ${_param:rabbitmq_heat_ssl_ca_file}
86 key_file: ${_param:rabbitmq_heat_client_ssl_key_file}
87 cert_file: ${_param:rabbitmq_heat_client_ssl_cert_file}
88 ssl:
89 enabled: ${_param:rabbitmq_ssl_enabled}