914df4616cfb893703c88c1fad9c9b30c4e42b47
[pharos.git] / config / installers / daisy / network.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': 'private',
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 nodes_num = conf['nodes'] | length -%}
45   {%- set networks = {} -%}
46   {%- for key in mapping -%}
47     {%- set net_data = conf['net_config'][mapping[key]] -%}
48     {%- set interface = net_data['interface'] -%}
49     {%- set interface_name = conf.idf[installer].network.node[0].interfaces[interface] -%}
50     {%- set bus_addr = conf.idf[installer].network.node[0].busaddr[interface] -%}
51     {%- set vlan = net_data['vlan'] -%}
52     {%- if vlan == "native" or vlan == None -%}
53       {%- set vlan = "null" -%}
54     {%- endif -%}
55     {%- set network = net_data['network'] -%}
56     {%- set ips = network.split(".") -%}
57     {%- set mask = net_data['mask'] -%}
58     {%- if 'ip-range' in net_data -%}
59       {%- set ip_range = net_data['ip-range'] -%}
60       {%- set (start, end) = ip_range.split("-") -%}
61     {%- else -%}
62       {%- set start = ".".join([ips[0], ips[1], ips[2], "10"]) -%}
63       {%- set end = ".".join([ips[0], ips[1], ips[2], "200"]) -%}
64     {%- endif -%}
65     {%- set vip = start.split(".")[3] | int -%}
66     {%- set vip = vip + nodes_num + 10 - (vip + nodes_num) % 10 -%}
67     {%- set vip = ".".join([ips[0], ips[1], ips[2], vip | string]) -%}
68
69     {%- if 'gateway' in net_data -%}
70       {%- set gateway = net_data.gateway -%}
71     {%- else -%}
72       {%- set gateway = ".".join([ips[0], ips[1], ips[2], "1"]) -%}
73     {%- endif -%}
74
75     {%- set networks = networks.update({key: {'interface_name': interface_name,
76                                               'bus_addr': bus_addr,
77                                               'vlan': vlan,
78                                               'network': network,
79                                               'mask': mask,
80                                               'start': start,
81                                               'end': end,
82                                               'vip': vip,
83                                               'gateway': gateway
84                                              }
85                                        }) %}
86
87   - cidr: '{{ network }}/{{ mask }}'
88     gateway: '{{ gateway }}'
89     ip_ranges:
90       - 'start': '{{ start }}'
91         'end': '{{ end }}'
92     vlan_id: {{ vlan }}
93     name: '{{ key }}'
94     {%- if key == 'EXTERNAL' %}
95     network_name: 'admin_external'
96     mapping: 'physnet1'
97     {%- endif -%}
98   {%- endfor %}
99
100 interfaces:
101   {%- for key in mapping %}
102   - name: '{{ key }}'
103     interface: '{{ networks[key].interface_name }}'
104   {%- endfor %}
105
106 internal_vip: '{{ networks['MANAGEMENT'].vip }}'
107 public_vip: '{{ networks['PUBLICAPI'].vip }}'
108
109 {%- endif %}