blob: 6c5324e7ee7481d0e7f097d5c6930e52c32ae470 [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
5- system.nova.compute.cluster
6- system.neutron.compute.cluster
Ales Komarekc12dd412017-06-27 16:24:42 +02007- cluster.sl_os_ovs
8parameters:
9 _param:
10 primary_interface: ens4
11 tenant_interface: ens5
12 external_interface: ens6
13 interface_mtu: 9000
14 linux_system_codename: xenial
15 nova:
16 compute:
17 vncproxy_url: http://${_param:cluster_vip_address}:6080
18 notification:
19 driver: messagingv2
20 topics: "notifications,${_param:stacklight_notification_topic}"
21 notify_on:
22 state_change: vm_and_task_state
23 message_queue:
24 members:
25 - host: ${_param:openstack_control_node01_address}
26 - host: ${_param:openstack_control_node02_address}
27 - host: ${_param:openstack_control_node03_address}
28 linux:
29 network:
30 bridge: openvswitch
Adam Tengler0900fa82017-07-03 15:33:42 +000031 concat_iface_files:
32 - src: '/etc/network/interfaces.d/50-cloud-init.cfg'
33 dst: '/etc/network/interfaces'
Ales Komarekc12dd412017-06-27 16:24:42 +020034 interface:
35 dhcp_int:
36 enabled: true
37 name: ens3
38 proto: dhcp
39 type: eth
40 mtu: ${_param:interface_mtu}
41 primary_interface:
42 enabled: true
Adam Tengler943b7612017-07-13 15:45:02 +000043 ipflush_onchange: true
Ales Komarekc12dd412017-06-27 16:24:42 +020044 name: ${_param:primary_interface}
45 mtu: ${_param:interface_mtu}
46 proto: manual
47 type: eth
48 tenant_interface:
49 enabled: true
Adam Tengler943b7612017-07-13 15:45:02 +000050 ipflush_onchange: true
Ales Komarekc12dd412017-06-27 16:24:42 +020051 name: ${_param:tenant_interface}
52 mtu: ${_param:interface_mtu}
53 proto: manual
54 type: eth
55 br-mgmt:
56 enabled: true
57 type: bridge
58 proto: static
59 address: ${_param:single_address}
60 netmask: 255.255.255.0
61 use_interfaces:
62 - ${_param:primary_interface}
63 br-mesh:
64 enabled: true
65 type: bridge
66 proto: static
67 address: ${_param:tenant_address}
68 netmask: 255.255.255.0
69 use_interfaces:
Adam Tengler0900fa82017-07-03 15:33:42 +000070 - ${_param:tenant_interface}
Adam Tengler943b7612017-07-13 15:45:02 +000071