blob: d264f85c78c2ea63468b2e350cd01789fcddc9ee [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
Martin Polreicha0addcc2018-06-25 11:32:52 +02004- system.linux.system.repo.mcp.apt_mirantis.saltstack
Tatyana Leontovich15b38e82018-01-11 13:06:38 +02005- 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 Karpin976cc202018-07-11 06:28:24 +030011- system.ceilometer.agent.telemetry.cluster
Mykyta Karpin8abcce32018-03-15 13:43:28 +020012- 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 Leontovich611a4962018-07-23 17:12:10 +030049 logging:
50 level: 3
51 filters: '3:remote 4:event'
52 outputs: '3:syslog:libvirtd'
53 buffer_size: 64
54 qemu:
55 logging:
56 handler: logd
57 virtlog:
58 enabled: true
59 level: 3
60 filters: '3:remote 4:event'
61 outputs: '3:syslog:virtlogd'
62 max_clients: 1024
63 max_size: 2097152
64 max_backups: 3
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020065 linux:
66 network:
67 bridge: openvswitch
68 interface:
69 dhcp_int:
70 enabled: true
71 name: ens3
72 proto: dhcp
73 type: eth
74 mtu: ${_param:interface_mtu}
75 primary_interface:
76 enabled: true
Vasyl Saienko900e7b32018-03-14 13:42:26 +020077 ipflush_onchange: true
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020078 name: ${_param:primary_interface}
79 mtu: ${_param:interface_mtu}
80 proto: manual
81 type: eth
82 tenant_interface:
83 enabled: true
Vasyl Saienko900e7b32018-03-14 13:42:26 +020084 ipflush_onchange: true
Tatyana Leontovich15b38e82018-01-11 13:06:38 +020085 name: ${_param:tenant_interface}
86 mtu: ${_param:interface_mtu}
87 proto: manual
88 type: eth
89 br-mgmt:
90 enabled: true
91 type: bridge
92 proto: static
93 address: ${_param:single_address}
94 netmask: 255.255.255.0
95 use_interfaces:
96 - ${_param:primary_interface}
97 br-mesh:
98 enabled: true
99 type: bridge
100 proto: static
101 address: ${_param:tenant_address}
102 netmask: 255.255.255.0
103 use_interfaces:
Vasyl Saienko6c780a92018-03-13 14:49:08 +0200104 - ${_param:tenant_interface}