Generate daisy network configuration by template
[pharos.git] / config / installers / daisy / network-dpdk.yaml.j2
1 ##############################################################################
2 # Copyright (c) 2017 ZTE Corporation and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 ##############################################################################
11 # Description
12 # MANAGEMENT: used for management
13 # STORAGE: used for storage access
14 # EXTERNAL: tenant public/floating IP associated network
15 # PUBLICAPI: used for horizon access, openstack API access
16 # TENANT: used for tenant access, vlan and VxLan supported, default VxLan
17 # HEARTBEAT: used for heartbeat, requires a dedicated interface
18 ##############################################################################
19
20 ---
21
22 network-config-metadata:
23   title: 'Deployment Adapter for baremetal POD'
24   version: '0.1'
25   created: 'Nov 22 2017'
26   comment: 'For Daisy initial'
27
28 {%- set mapping = {'HEARTBEAT': 'admin',
29                    'MANAGEMENT': 'mgmt',
30                    'PUBLICAPI': 'mgmt',
31                    'STORAGE': 'storage',
32                    'TENANT': 'public',
33                    'EXTERNAL': 'public'} -%}
34
35 {%- if "idf" in conf and ("daisy" in conf["idf"] or "fuel" in conf["idf"]) -%}
36   {%- if "daisy" in conf["idf"] -%}
37     {%- set installer = "daisy" -%}
38   {%- else -%}
39     {%- set installer = "fuel" -%}
40   {%- endif %}
41
42 networks:
43
44   {%- set networks = {} -%}
45   {%- for key in mapping -%}
46     {%- set net_data = conf['net_config'][mapping[key]] -%}
47     {%- set interface = net_data['interface'] -%}
48     {%- set interface_name = conf.idf[installer].network.node[0].interfaces[interface] -%}
49     {%- set bus_addr = conf.idf[installer].network.node[0].busaddr[interface] -%}
50     {%- set vlan = net_data['vlan'] -%}
51     {%- if vlan == "native" or vlan == None -%}
52       {%- set vlan = "null" -%}
53     {%- endif -%}
54     {%- set network = net_data['network'] -%}
55     {%- set ips = network.split(".") -%}
56     {%- set mask = net_data['mask'] -%}
57     {%- if 'ip-range' in net_data -%}
58       {%- set ip_range = net_data['ip-range'] -%}
59       {%- set (start, end) = ip_range.split("-") -%}
60     {%- else -%}
61       {%- set start = ".".join([ips[0], ips[1], ips[2], "10"]) -%}
62       {%- set end = ".".join([ips[0], ips[1], ips[2], "200"]) -%}
63     {%- endif -%}
64     {%- set vip = start -%}
65
66     {%- if 'gateway' in net_data -%}
67       {%- set gateway = net_data.gateway -%}
68     {%- else -%}
69       {%- set gateway = ".".join([ips[0], ips[1], ips[2], "1"]) -%}
70     {%- endif -%}
71
72     {%- set networks = networks.update({key: {'interface_name': interface_name,
73                                               'bus_addr': bus_addr,
74                                               'vlan': vlan,
75                                               'network': network,
76                                               'mask': mask,
77                                               'start': start,
78                                               'end': end,
79                                               'vip': vip,
80                                               'gateway': gateway
81                                              }
82                                        }) %}
83
84   - cidr: '{{ network }}/{{ mask }}'
85     gateway: '{{ gateway }}'
86     ip_ranges:
87       - 'start': '{{ start }}'
88         'end': '{{ end }}'
89     vlan_id: {{ vlan }}
90     name: '{{ key }}'
91   {%- endfor %}
92
93 interfaces:
94   {%- for key in mapping %}
95   - name: '{{ key }}'
96     interface: '{{ networks[key].interface_name }}'
97   {%- endfor %}
98
99 internal_vip: '{{ networks['MANAGEMENT'].vip }}'
100 public_vip: '{{ networks['PUBLICAPI'].vip }}'
101
102 {%- endif %}