[baremetal] Containerize MaaS
[fuel.git] / mcp / reclass / classes / cluster / mcp-common-ha / infra / kvm_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 {#- NOTE: br-{mgmt,ctl} are cross-referenced, careful when changing names #}
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_admin: True, nm.ctl01.nic_mgmt: True, nm.ctl01.nic_public: True } %}
13 {%- set vlans = { nm.vlan_admin: nm.ctl01.nic_admin, nm.vlan_mgmt: nm.ctl01.nic_mgmt, nm.vlan_public: nm.ctl01.nic_public } %}
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-mgmt:
25           enabled: true
26           proto: static
27           address: ${_param:pxe_admin_address}
28           netmask: ${_param:opnfv_net_admin_mask}
29 {%- if conf.MCP_VCP %}
30 {#- For NOVCP scenarios, kvm02 gateway will be added via kvm_novcp class #}
31           gateway: {{ nm.net_admin_gw }}
32           name_servers:
33             - {{ nm.net_admin_gw }}
34 {%- endif %}
35           type: bridge
36           use_interfaces:
37             - {{ ma.interface_str(nm.ctl01.nic_admin, nm.vlan_admin) }}
38           noifupdown: true
39         br-ctl:
40           enabled: true
41           type: bridge
42           proto: static
43           address: ${_param:single_address}
44           netmask: ${_param:opnfv_net_mgmt_mask}
45           use_interfaces:
46             - {{ ma.interface_str(nm.ctl01.nic_mgmt, nm.vlan_mgmt) }}
47           noifupdown: true
48 {#- For NOVCP scenarios, kvm{01,03} external gateway will be added via triport class #}
49         br-ex:
50           enabled: true
51           proto: manual
52           netmask: ${_param:opnfv_net_public_mask}
53           type: bridge
54           use_interfaces:
55             - {{ ma.interface_str(nm.ctl01.nic_public, nm.vlan_public) }}
56           noifupdown: true