23f4ed638ca47f55dd89ac363ce3e21532d4dee0
[fuel.git] / mcp / reclass / classes / cluster / mcp-common-noha / openstack_gateway_pdf.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 ---
9 {%- import 'net_map.j2' as nm with context %}
10 {%- import 'net_macros.j2' as ma with context %}
11 {#- Filter-out NIC duplicates by constructing a dict (used NICs only) #}
12 {%- set nics = { nm.ctl01.nic_mgmt: True, nm.ctl01.nic_private: True } %}
13 {%- set vlans = { nm.vlan_mgmt: nm.ctl01.nic_mgmt } %}
14 {%- if '-fdio-' in conf.MCP_DEPLOY_SCENARIO %}
15 {%- do nics.update({ nm.ctl01.nic_public: True }) %}
16 {%- do vlans.update({ nm.vlan_public: nm.ctl01.nic_public }) %}
17 {%- elif '-ovs-' not in conf.MCP_DEPLOY_SCENARIO %}
18 {%- set vlan_private_start = (nm.vlan_private | string).rsplit('-')[0] %}
19 {%- do vlans.update({ vlan_private_start: nm.ctl01.nic_private }) %}
20 {%- endif %}
21 parameters:
22   linux:
23     network:
24 {%- if '-fdio-' not in conf.MCP_DEPLOY_SCENARIO %}
25 {%- set floating_br_type = 'ovs_bridge' %}
26       bridge: openvswitch
27 {%- else %}
28 {%- set floating_br_type = 'bridge' %}
29       vpp:
30         enabled: true
31         # Reuse ovs-dpdk socket mem configuration from IDF
32         dpdk_socket_mem: ${_param:compute_ovs_dpdk_socket_mem}
33         main_core: ${linux:system:kernel:isolcpu}
34         gid: 'neutron'
35         commands: |
36           create tap host-if-name vpp_ext_tap host-bridge br-floating rx-ring-size 1024 tx-ring-size 1024
37           set interface state ${_param:external_vpp_tap} up
38       dpdk:
39         enabled: true
40         driver: "${_param:compute_dpdk_driver}"
41 {%- endif %}
42       interface:
43         pxe_admin_int:
44           enabled: true
45           name: {{ nm.ctl01.nic_admin }}
46           proto: static
47           type: eth
48           address: ${_param:pxe_admin_address}
49           netmask: ${_param:opnfv_net_admin_mask}
50           mtu: ${_param:interface_mtu}
51           noifupdown: true
52
53 {#- prevent duplicates for tagged mgmt on the same physical interface as PXE/admin #}
54 {%- if nm.ctl01.nic_admin in nics %}
55   {%- do nics.pop(nm.ctl01.nic_admin) %}
56 {%- endif %}
57
58 {{ ma.linux_network_interfaces_nic(nics) }}
59
60 {{ ma.linux_network_interfaces_vlan(vlans) }}
61
62 {%- if '-fdio-' not in conf.MCP_DEPLOY_SCENARIO %}
63         {{ ma.interface_str(nm.ctl01.nic_public, nm.vlan_public) }}:
64           enabled: true
65           mtu: ${_param:interface_mtu}
66           proto: manual
67           ovs_port_type: OVSPort
68           type: ovs_port
69           ovs_bridge: br-floating
70           bridge: br-floating
71 {%- endif %}
72         br-floating:
73           enabled: true
74           type: {{ floating_br_type }}
75           proto: static
76           address: ${_param:external_address}
77           netmask: ${_param:opnfv_net_public_mask}
78           gateway: ${_param:opnfv_net_public_gw}
79           name_servers: {{ nm.dns_public }}
80           use_interfaces:
81             - {{ ma.interface_str(nm.ctl01.nic_public, nm.vlan_public) }}
82           noifupdown: true
83         br-mgmt:
84           enabled: true
85           type: bridge
86           proto: static
87           address: ${_param:single_address}
88           netmask: ${_param:opnfv_net_mgmt_mask}
89           mtu: ${_param:interface_mtu}
90           use_interfaces:
91             - {{ ma.interface_str(nm.ctl01.nic_mgmt, nm.vlan_mgmt) }}