blob: 650743c3bc13f8f76ea43ccbf86973e93420204f [file] [log] [blame]
Tatyana Leontovich15b38e82018-01-11 13:06:38 +02001classes:
2- system.linux.system.repo.mcp.apt_mirantis.openstack
3- system.linux.system.repo.mcp.extra
4- system.linux.system.repo.mcp.apt_mirantis.saltstack_2016_3
5- system.linux.network.hosts
6- system.nova.compute.cluster
7- system.neutron.compute.cluster
Oleh Hryhorovc1ac7322018-04-18 15:35:03 +03008- system.cinder.volume.single
9- system.cinder.volume.backend.lvm
10- system.linux.storage.loopback
Mykyta Karpin8abcce32018-03-15 13:43:28 +020011- system.ceilometer.agent.cluster
12- system.ceilometer.agent.polling.default
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020013- cluster.virtual-mcp-pike-ovs
14parameters:
15 _param:
16 primary_interface: ens4
17 tenant_interface: ens5
18 external_interface: ens6
19 interface_mtu: 1500
20 linux_system_codename: xenial
Oleh Hryhorovc1ac7322018-04-18 15:35:03 +030021 loopback_device_size: 20
Oleg Bondarevd0bc4462018-03-14 11:43:50 +040022 neutron:
23 compute:
24 bgp_vpn:
25 enabled: True
26 driver: bagpipe
27 bagpipe:
28 local_address: ${_param:tenant_address}
29 peers: 127.0.0.1
30 autonomous_system: 64512
31 enable_rtc: True
32 backend:
33 extension:
34 bagpipe_bgpvpn:
35 enabled: True
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020036 nova:
37 compute:
38 vncproxy_url: http://${_param:cluster_vip_address}:6080
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020039 message_queue:
40 members:
41 - host: ${_param:openstack_control_node01_address}
42 - host: ${_param:openstack_control_node02_address}
43 - host: ${_param:openstack_control_node03_address}
Vasyl Saienko4b63c292018-04-26 09:25:04 +000044 # Compute nodes on devcloud can have different CPUs, we need this
45 # to make sure live migration always work even when cmp VMs are on different computes
46 cpu_mode: custom
47 libvirt:
48 cpu_model: kvm64
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020049 linux:
50 network:
51 bridge: openvswitch
52 interface:
53 dhcp_int:
54 enabled: true
55 name: ens3
56 proto: dhcp
57 type: eth
58 mtu: ${_param:interface_mtu}
59 primary_interface:
60 enabled: true
Vasyl Saienko900e7b32018-03-14 13:42:26 +020061 ipflush_onchange: true
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020062 name: ${_param:primary_interface}
63 mtu: ${_param:interface_mtu}
64 proto: manual
65 type: eth
66 tenant_interface:
67 enabled: true
Vasyl Saienko900e7b32018-03-14 13:42:26 +020068 ipflush_onchange: true
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020069 name: ${_param:tenant_interface}
70 mtu: ${_param:interface_mtu}
71 proto: manual
72 type: eth
73 br-mgmt:
74 enabled: true
75 type: bridge
76 proto: static
77 address: ${_param:single_address}
78 netmask: 255.255.255.0
79 use_interfaces:
80 - ${_param:primary_interface}
81 br-mesh:
82 enabled: true
83 type: bridge
84 proto: static
85 address: ${_param:tenant_address}
86 netmask: 255.255.255.0
87 use_interfaces:
Vasyl Saienko6c780a92018-03-13 14:49:08 +020088 - ${_param:tenant_interface}