Enforce static configuration instead of DHCP
[fuel.git] / mcp / reclass / classes / cluster / mcp-ovn-ha / openstack / compute_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 {%- import 'net_map.j2' as nm with context %}
9 {%- import 'net_macros.j2' as ma with context %}
10 {#- Filter-out NIC duplicates by constructing a dict (used NICs only) #}
11 {%- set nics = { nm.cmp001.nic_private: True } %}
12 {%- set vlan_private_start = (nm.vlan_private | string).rsplit('-')[0] %}
13 {%- set vlans = { vlan_private_start: nm.cmp001.nic_private } %}
14 ---
15 parameters:
16   linux:
17     network:
18       interface:
19
20 {{ ma.linux_network_interfaces_nic(nics) }}
21
22 {{ ma.linux_network_interfaces_vlan(vlans) }}
23
24         br-mesh:
25           enabled: true
26           type: bridge
27           address: ${_param:tenant_address}
28           netmask: ${_param:opnfv_net_private_mask}
29           mtu: 1500
30           use_interfaces:
31             - {{ ma.interface_str(nm.cmp001.nic_private, vlan_private_start) }}