aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/config-compute/templates/compute.j2
blob: e7b79436b9300228a56c6f97b9c04cd83dc56b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# Physical interface
auto eth0
iface eth0 inet manual

# external interface
{% set intf_external = compu_sys_mappings["external"]["interface"] %}
{% if compu_sys_mappings["external"]["vlan_tag"] | int %}
{% set intf_external = intf_external + '.' + compu_sys_mappings["external"]["vlan_tag"]|string %}
{% endif %}
auto {{ intf_external }}
iface {{ intf_external }} inet manual
{% if compu_sys_mappings["external"]["vlan_tag"] | int %}
    vlan-raw-device {{ intf_external }}
{% endif %}

# tenant interface
{% set intf_tenant = compu_sys_mappings["tenant"]["interface"] %}
{% if compu_sys_mappings["tenant"]["vlan_tag"] | int %}
{% set intf_tenant = intf_tenant + '.' + compu_sys_mappings["tenant"]["vlan_tag"]|string %}
{% endif %}
auto {{ intf_tenant }}
iface {{ intf_tenant }} inet manual
{% if compu_sys_mappings["tenant"]["vlan_tag"] | int %}
    vlan-raw-device {{ intf_tenant }}
{% endif %}

# storage interface
{% set intf_storage = compu_sys_mappings["storage"]["interface"] %}
{% if compu_sys_mappings["storage"]["vlan_tag"] | int %}
{% set intf_storage = intf_storage + '.' + compu_sys_mappings["storage"]["vlan_tag"]|string %}
{% endif %}
auto {{ intf_storage }}
iface {{ intf_storage }} inet manual
{% if compu_sys_mappings["storage"]["vlan_tag"] | int %}
    vlan-raw-device {{ intf_storage }}
{% endif %}

# Container/Host management bridge
auto br-mgmt
iface br-mgmt inet static
    bridge_stp off
    bridge_waitport 0
    bridge_fd 0
    bridge_ports eth0
    address {{ ip_settings[inventory_hostname]["mgmt"]["ip"] }}
    netmask 255.255.255.0

# OpenStack Networking VLAN bridge
auto br-external
iface br-external inet static
    bridge_stp off
    bridge_waitport 0
    bridge_fd 0
    bridge_ports {{ intf_external }}
    address {{ ip_settings[inventory_hostname]["external"]["ip"] }}
    netmask 255.255.255.0
    gateway {{ ip_settings[inventory_hostname]["external"]["gw"] }}
    offload-sg off
    # Create veth pair, don't bomb if already exists
    pre-up ip link add external-veth type veth peer name external-nic || true
    # Set both ends UP
    pre-up ip link set external-veth up
    pre-up ip link set external-nic up
    # Delete veth pair on DOWN
    post-down ip link del external-veth || true
    bridge_ports external-veth

# VXLAN (tunnel/overlay) bridge config
auto br-tenant
iface br-tenant inet static
    bridge_stp off
    bridge_waitport 0
    bridge_fd 0
    bridge_ports {{ intf_tenant }}
    address {{ ip_settings[inventory_hostname]["tenant"]["ip"] }}
    netmask 255.255.255.0

# storage bridge
auto br-storage
iface br-storage inet static
    bridge_stp off
    bridge_waitport 0
    bridge_fd 0
    bridge_ports {{ intf_storage }}
    address {{ ip_settings[inventory_hostname]["storage"]["ip"] }}
    netmask 255.255.255.0