d57a4b7c149f0f017047082ad37f70f95a075e8e
[fuel.git] / mcp / reclass / classes / cluster / mcp-odl-noha / openstack / compute.yml.j2
1 ##############################################################################
2 # Copyright (c) 2018 Mirantis Inc., Enea AB and others.
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7 ##############################################################################
8 {%- import 'net_map.j2' as nm with context %}
9 {%- import 'net_macros.j2' as ma with context %}
10 {%- set vlan_private_start = (nm.vlan_private | string).rsplit('-')[0] %}
11 ---
12 classes:
13   - service.neutron.compute.single
14   - service.neutron.compute.opendaylight.single
15 {%- if '-ovs-' in conf.MCP_DEPLOY_SCENARIO %}
16   - system.nova.compute.nfv.hugepages
17   - system.neutron.compute.nfv.dpdk
18 {%- endif %}
19   - cluster.mcp-common-noha.openstack_compute
20   - cluster.mcp-odl-noha
21 parameters:
22   linux:
23     network:
24       interface:
25 {%- if '-ovs-' in conf.MCP_DEPLOY_SCENARIO %}
26         dpdk0:
27           name: ${_param:dpdk0_name}
28           pci: ${_param:dpdk0_pci}
29           driver: ${_param:dpdk0_driver}
30           enabled: true
31           bridge: br-prv
32           type: dpdk_ovs_port
33           n_rxq: ${_param:dpdk0_n_rxq}
34           mtu: ${_param:interface_mtu}
35         br-prv:
36           enabled: true
37           type: dpdk_ovs_bridge
38           proto: static
39           address: ${_param:tenant_address}
40           netmask: ${_param:opnfv_net_private_mask}
41         {{ nm.cmp001.nic_private }}:
42           type: dpdk  # Not a meaningful type, just match 'dpdk' for filtering
43         {{ nm.cmp001.nic_public }}:
44           enabled: true
45           type: eth
46           mtu: ${_param:interface_mtu}
47           proto: manual
48         br-floating:
49           enabled: true
50           type: ovs_bridge
51         float-to-ex:
52           enabled: true
53           type: ovs_port
54           mtu: ${_param:interface_mtu}
55           bridge: br-floating
56         br-ex:
57           enabled: true
58           type: bridge
59           address: ${_param:external_address}
60           netmask: ${_param:opnfv_net_public_mask}
61           use_interfaces:
62             - {{ ma.interface_str(nm.cmp001.nic_public, nm.vlan_public) }}
63           use_ovs_ports:
64             - float-to-ex
65           gateway: ${_param:opnfv_net_public_gw}
66           name_servers: {{ nm.dns_public }}
67 {%- else %}
68         br-mesh:
69           enabled: true
70           type: bridge
71           proto: static
72           address: ${_param:tenant_address}
73           netmask: ${_param:opnfv_net_private_mask}
74           use_interfaces:
75             - {{ ma.interface_str(nm.cmp001.nic_private, vlan_private_start) }}
76         ovs_port_{{ nm.cmp001.nic_public }}:
77           enabled: true
78           name: {{ ma.interface_str(nm.cmp001.nic_public, nm.vlan_public) }}
79           mtu: ${_param:interface_mtu}
80           proto: manual
81           ovs_port_type: OVSPort
82           type: ovs_port
83           ovs_bridge: br-floating
84           bridge: br-floating
85         br-floating:
86           enabled: true
87           type: ovs_bridge
88           proto: static
89           address: ${_param:external_address}
90           netmask: ${_param:opnfv_net_public_mask}
91           use_interfaces:
92             - {{ ma.interface_str(nm.cmp001.nic_public, nm.vlan_public) }}
93           gateway: ${_param:opnfv_net_public_gw}
94           name_servers: {{ nm.dns_public }}
95           noifupdown: true
96 {%- endif %}