blob: 8932786a31e80b2caf5512b883cfce61a6438272 [file] [log] [blame]
Ales Komarekc12dd412017-06-27 16:24:42 +02001classes:
2- system.linux.system.repo.mcp.openstack
3- system.linux.system.repo.mcp.extra
4- system.linux.system.repo.saltstack.xenial
Jiri Broulik432ae9c2017-08-17 10:24:23 +02005- system.linux.network.hosts
Ales Komarekc12dd412017-06-27 16:24:42 +02006- system.nova.compute.cluster
7- system.neutron.compute.cluster
Petr Michalecf05e3ea2017-08-21 17:33:16 +02008- cluster.os-ha-ovs
Ales Komarekc12dd412017-06-27 16:24:42 +02009parameters:
10 _param:
11 primary_interface: ens4
12 tenant_interface: ens5
13 external_interface: ens6
14 interface_mtu: 9000
15 linux_system_codename: xenial
16 nova:
17 compute:
Vasyl Saienko90a3d222017-12-18 19:16:30 +020018 cpu_mode: none
Ales Komarekc12dd412017-06-27 16:24:42 +020019 vncproxy_url: http://${_param:cluster_vip_address}:6080
20 notification:
21 driver: messagingv2
22 topics: "notifications"
23 notify_on:
24 state_change: vm_and_task_state
25 message_queue:
26 members:
27 - host: ${_param:openstack_control_node01_address}
28 - host: ${_param:openstack_control_node02_address}
29 - host: ${_param:openstack_control_node03_address}
30 linux:
31 network:
32 bridge: openvswitch
Adam Tengler0900fa82017-07-03 15:33:42 +000033 concat_iface_files:
34 - src: '/etc/network/interfaces.d/50-cloud-init.cfg'
35 dst: '/etc/network/interfaces'
Ales Komarekc12dd412017-06-27 16:24:42 +020036 interface:
37 dhcp_int:
38 enabled: true
39 name: ens3
40 proto: dhcp
41 type: eth
42 mtu: ${_param:interface_mtu}
43 primary_interface:
44 enabled: true
Adam Tengler943b7612017-07-13 15:45:02 +000045 ipflush_onchange: true
Ales Komarekc12dd412017-06-27 16:24:42 +020046 name: ${_param:primary_interface}
47 mtu: ${_param:interface_mtu}
48 proto: manual
49 type: eth
50 tenant_interface:
51 enabled: true
Adam Tengler943b7612017-07-13 15:45:02 +000052 ipflush_onchange: true
Ales Komarekc12dd412017-06-27 16:24:42 +020053 name: ${_param:tenant_interface}
54 mtu: ${_param:interface_mtu}
55 proto: manual
56 type: eth
57 br-mgmt:
58 enabled: true
59 type: bridge
60 proto: static
61 address: ${_param:single_address}
62 netmask: 255.255.255.0
63 use_interfaces:
64 - ${_param:primary_interface}
65 br-mesh:
66 enabled: true
67 type: bridge
68 proto: static
69 address: ${_param:tenant_address}
70 netmask: 255.255.255.0
71 use_interfaces:
72 - ${_param:tenant_interface}
Adam Tengler943b7612017-07-13 15:45:02 +000073