summaryrefslogtreecommitdiff
path: root/cloudinit/net/eni.py
diff options
context:
space:
mode:
authorDarren Birkett <darren.birkett@gmail.com>2019-10-21 16:17:03 +0000
committerServer Team CI Bot <josh.powers+server-team-bot@canonical.com>2019-10-21 16:17:03 +0000
commit02c8214eac857e29b40ecc65992c1da6983083e1 (patch)
treefd4098986e46b8089a21ce08f400b2ca7465ce7e /cloudinit/net/eni.py
parentecb501b84338f078be18c38c68c3ce87fed3584b (diff)
downloadvyos-cloud-init-02c8214eac857e29b40ecc65992c1da6983083e1.tar.gz
vyos-cloud-init-02c8214eac857e29b40ecc65992c1da6983083e1.zip
net: enable infiniband support in eni and sysconfig renderers
Commit e7b0e5f72 added support for configuring infiniband devices by adding a new infiniband 'type'. This commit updates eni and sysconfig renderers to consume this new type and configure infiniband devices correctly. LP: #1847114
Diffstat (limited to 'cloudinit/net/eni.py')
-rw-r--r--cloudinit/net/eni.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/cloudinit/net/eni.py b/cloudinit/net/eni.py
index 530922b5..a9a80c95 100644
--- a/cloudinit/net/eni.py
+++ b/cloudinit/net/eni.py
@@ -94,7 +94,7 @@ def _iface_add_attrs(iface, index, ipv4_subnet_mtu):
]
renames = {'mac_address': 'hwaddress'}
- if iface['type'] not in ['bond', 'bridge', 'vlan']:
+ if iface['type'] not in ['bond', 'bridge', 'infiniband', 'vlan']:
ignore_map.append('mac_address')
for key, value in iface.items():
@@ -472,9 +472,10 @@ class Renderer(renderer.Renderer):
order = {
'loopback': 0,
'physical': 1,
- 'bond': 2,
- 'bridge': 3,
- 'vlan': 4,
+ 'infiniband': 2,
+ 'bond': 3,
+ 'bridge': 4,
+ 'vlan': 5,
}
sections = []