blob: 7541d284d1468e75063a537d4fe549e709ee18e1 [file] [log] [blame]
Ondrej Smola03ff34e2016-12-01 01:30:33 +01001classes:
2- service.haproxy.proxy.single
3- service.nova.control.cluster
Mykyta Karpin882dcac2018-11-30 16:37:28 +02004- system.nova.upgrade
Ondrej Smola03ff34e2016-12-01 01:30:33 +01005- service.keepalived.cluster.single
6- system.haproxy.proxy.listen.openstack.nova
Petr Michalecab6d98b2017-02-24 12:52:50 +01007- system.haproxy.proxy.listen.openstack.novnc
Oleksandr Shyshkoa3b66622018-08-16 12:51:58 +03008- system.salt.minion.cert.mysql.clients.openstack.nova
Oleksandr Bryndziie50923d2018-09-12 13:54:20 +00009- system.salt.minion.cert.rabbitmq.clients.openstack.nova
Ondrej Smola03ff34e2016-12-01 01:30:33 +010010parameters:
Ondrej Smoladed21702016-12-30 11:55:18 +010011 _param:
12 nova_vncproxy_url: http://${_param:cluster_vip_address}:6080
Pavel Cizinsky9fee97c2017-02-21 23:36:32 +010013 nova_cpu_allocation_ratio: 16.0
14 nova_ram_allocation_ratio: 1.5
15 nova_disk_allocation_ratio: 1.0
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 nova:
23 controller:
24 enabled: true
25 version: ${_param:nova_version}
Ondrej Smoladed21702016-12-30 11:55:18 +010026 vncproxy_url: ${_param:nova_vncproxy_url}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010027 security_group: false
28 dhcp_domain: novalocal
sandriichenkof07789c2018-01-22 15:17:34 +000029 scheduler_default_filters: "DifferentHostFilter,SameHostFilter,RetryFilter,AvailabilityZoneFilter,RamFilter,CoreFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,PciPassthroughFilter,NUMATopologyFilter,AggregateInstanceExtraSpecsFilter"
Pavel Cizinsky9fee97c2017-02-21 23:36:32 +010030 cpu_allocation_ratio: ${_param:nova_cpu_allocation_ratio}
31 ram_allocation_ratio: ${_param:nova_ram_allocation_ratio}
32 disk_allocation_ratio: ${_param:nova_disk_allocation_ratio}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010033 workers: 8
Vasyl Saienko01eb3172018-07-16 13:44:53 +030034 role: ${_param:openstack_node_role}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010035 bind:
36 private_address: ${_param:cluster_local_address}
37 public_address: ${_param:cluster_vip_address}
38 public_name: ${_param:cluster_vip_address}
Petr Michalecab6d98b2017-02-24 12:52:50 +010039 novncproxy_address: ${_param:cluster_local_address}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010040 novncproxy_port: 6080
41 database:
42 engine: mysql
43 host: ${_param:openstack_database_address}
44 port: 3306
45 name: nova
sgarbuz5f58dd72019-05-20 14:10:11 +030046 user: ${_param:mysql_nova_username}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010047 password: ${_param:mysql_nova_password}
Oleksandr Shyshkoa3b66622018-08-16 12:51:58 +030048 x509:
49 enabled: ${_param:openstack_mysql_x509_enabled}
Oleksandr Shyshkoc77d0b72018-08-27 11:52:22 +030050 ca_file: ${_param:mysql_nova_ssl_ca_file}
51 key_file: ${_param:mysql_nova_client_ssl_key_file}
52 cert_file: ${_param:mysql_nova_client_ssl_cert_file}
53 ssl:
54 enabled: ${_param:galera_ssl_enabled}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010055 identity:
56 engine: keystone
57 region: ${_param:openstack_region}
58 host: ${_param:cluster_vip_address}
59 port: 35357
sgarbuz5f58dd72019-05-20 14:10:11 +030060 user: ${_param:keystone_nova_username}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010061 password: ${_param:keystone_nova_password}
62 tenant: service
Vasyl Saienko047166c2018-03-09 11:17:45 +020063 protocol: ${_param:cluster_internal_protocol}
Ivan Berezovskiy33d66ba2019-08-29 13:32:01 +040064 service_token_roles: admin
65 service_token_roles_required: true
Oleksandr Bryndziif8e71a52019-03-05 17:16:48 +020066 service_user:
67 enabled: ${_param:nova_service_user_enabled}
Vasyl Saienko1cc05de2018-11-19 16:49:27 +020068 barbican:
69 enabled: ${_param:barbican_integration_enabled}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010070 message_queue:
71 engine: rabbitmq
Oleksandr Shyshko3d1dd6f2018-09-20 18:22:04 +030072 port: ${_param:openstack_rabbitmq_port}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010073 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}
79 - host: ${_param:openstack_message_queue_node03_address}
Oleksandr Bryndziie50923d2018-09-12 13:54:20 +000080 x509:
81 enabled: ${_param:openstack_rabbitmq_x509_enabled}
82 ca_file: ${_param:rabbitmq_nova_ssl_ca_file}
83 key_file: ${_param:rabbitmq_nova_client_ssl_key_file}
84 cert_file: ${_param:rabbitmq_nova_client_ssl_cert_file}
85 ssl:
86 enabled: ${_param:rabbitmq_ssl_enabled}
Oleksandr Bryndzii87f24232018-10-02 09:51:13 +000087 cache:
88 security:
89 enabled: ${_param:nova_memcache_security_enabled}
90 strategy: ${_param:openstack_memcache_security_strategy}
91 secret_key: ${_param:nova_memcache_secret_key}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010092 glance:
93 host: ${_param:cluster_vip_address}
94 port: 9292
Vasyl Saienko047166c2018-03-09 11:17:45 +020095 protocol: ${_param:cluster_internal_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +010096 network:
97 engine: neutron
98 region: ${_param:openstack_region}
Guillaume Thouvenin1b2e66d2017-01-11 15:53:01 +010099 host: ${_param:neutron_service_host}
sgarbuz5f58dd72019-05-20 14:10:11 +0300100 user: ${_param:keystone_neutron_username}
Ondrej Smola03ff34e2016-12-01 01:30:33 +0100101 password: ${_param:keystone_neutron_password}
102 port: 9696
103 mtu: 1500
104 tenant: service
Vasyl Saienko047166c2018-03-09 11:17:45 +0200105 protocol: ${_param:cluster_internal_protocol}
Ondrej Smola03ff34e2016-12-01 01:30:33 +0100106 metadata:
Oleksii Chuprynb79f91d2017-04-07 09:54:21 +0300107 password: ${_param:metadata_password}