aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/post-osa/templates/compute.j2
blob: 9e45fa90c25a3d088cde24bd9098567f1f868887 (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
# 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 static
    address {{ ip_settings[inventory_hostname]["mgmt"]["ip"] }}
    netmask 255.255.255.0
    pre-up ifconfig br-mgmt down || true
    pre-up brctl delbr br-mgmt || true

# 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 static
{% if compu_sys_mappings["external"]["vlan_tag"] | int %}
    vlan-raw-device {{ intf_external }}
{% endif %}
    address {{ ip_settings[inventory_hostname]["external"]["ip"] }}
    netmask 255.255.255.0
    gateway {{ ip_settings[inventory_hostname]["external"]["gw"] }}
    pre-up ip link del br-vlan-veth || true
    pre-up ifconfig br-external down || true
    pre-up brctl delbr br-external || true

# 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 static
{% if compu_sys_mappings["tenant"]["vlan_tag"] | int %}
    vlan-raw-device {{ intf_tenant }}
{% endif %}
    address {{ ip_settings[inventory_hostname]["tenant"]["ip"] }}
    netmask 255.255.255.0
    pre-up ifconfig br-tenant down || true
    pre-up brctl delbr br-tenant || true

# 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 static
{% if compu_sys_mappings["storage"]["vlan_tag"] | int %}
    vlan-raw-device {{ intf_storage }}
{% endif %}
    address {{ ip_settings[inventory_hostname]["storage"]["ip"] }}
    netmask 255.255.255.0
    pre-up ifconfig br-storage down || true
    pre-up brctl delbr br-storage || true