blob: e11feaee8a22726cbe7c880f569b1c3c9c4a0d30 [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
Oleksandr Shyshko3d1dd6f2018-09-20 18:22:04 +030016 openstack_rabbitmq_port: 5672
Andrey Shestakov0c7e1102017-08-10 13:39:04 +030017 linux:
18 system:
19 package:
20 python-pymysql:
21 fromrepo: ${_param:openstack_version}
22 version: latest
Ondrej Smola03ff34e2016-12-01 01:30:33 +010023 heat:
24 server:
25 stack_domain_admin:
26 name: heat_domain_admin
27 password: ${_param:heat_domain_admin_password}
28 domain: heat
29 enabled: true
Pavel Cizinsky3f8377d2017-03-02 15:17:23 +010030 region: ${_param:openstack_region}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010031 version: ${_param:heat_version}
Vasyl Saienko01eb3172018-07-16 13:44:53 +030032 role: ${_param:openstack_node_role}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010033 bind:
34 api_cfn:
35 address: ${_param:cluster_local_address}
36 api_cloudwatch:
37 address: ${_param:cluster_local_address}
38 api:
39 address: ${_param:cluster_local_address}
40 database:
41 engine: mysql
42 host: ${_param:openstack_database_address}
43 port: 3306
44 name: heat
45 user: heat
46 password: ${_param:mysql_heat_password}
Oleksandr Shyshkob3632d52018-08-30 17:08:08 +030047 x509:
48 enabled: ${_param:openstack_mysql_x509_enabled}
49 ca_file: ${_param:mysql_heat_ssl_ca_file}
50 key_file: ${_param:mysql_heat_client_ssl_key_file}
51 cert_file: ${_param:mysql_heat_client_ssl_cert_file}
52 ssl:
53 enabled: ${_param:galera_ssl_enabled}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010054 metadata:
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 waitcondition:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030059 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010060 port: 8000
Oleksii Chupryn2c877942017-04-07 10:02:32 +030061 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010062 watch:
Oleksii Chupryn2c877942017-04-07 10:02:32 +030063 host: ${_param:cluster_public_host}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010064 port: 8003
Oleksii Chupryn2c877942017-04-07 10:02:32 +030065 protocol: ${_param:cluster_public_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010066 identity:
67 engine: keystone
68 host: ${_param:cluster_vip_address}
69 port: 35357
70 tenant: service
71 user: heat
72 password: ${_param:keystone_heat_password}
Vasyl Saienko047166c2018-03-09 11:17:45 +020073 protocol: ${_param:cluster_internal_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010074 message_queue:
75 engine: rabbitmq
Oleksandr Shyshko3d1dd6f2018-09-20 18:22:04 +030076 port: ${_param:openstack_rabbitmq_port}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010077 user: openstack
78 password: ${_param:rabbitmq_openstack_password}
79 virtual_host: '/openstack'
80 members:
81 - host: ${_param:openstack_message_queue_node01_address}
82 - host: ${_param:openstack_message_queue_node02_address}
Pavel Cizinsky3f8377d2017-03-02 15:17:23 +010083 - host: ${_param:openstack_message_queue_node03_address}
Oleksandr Bryndziica6cb312018-09-12 13:53:15 +000084 x509:
85 enabled: ${_param:openstack_rabbitmq_x509_enabled}
86 ca_file: ${_param:rabbitmq_heat_ssl_ca_file}
87 key_file: ${_param:rabbitmq_heat_client_ssl_key_file}
88 cert_file: ${_param:rabbitmq_heat_client_ssl_cert_file}
89 ssl:
90 enabled: ${_param:rabbitmq_ssl_enabled}