Add networkd configuration to server role
Update inventory with necessary networking settings
This commit is contained in:
18
roles/server/templates/netdev.j2
Normal file
18
roles/server/templates/netdev.j2
Normal file
@@ -0,0 +1,18 @@
|
||||
# ANSIBLE MANAGED FILE - DO NOT MANUALLY EDIT
|
||||
#
|
||||
[NetDev]
|
||||
Name={{ item.key }}
|
||||
type={{ item.value.type }}
|
||||
|
||||
{% if item.value.type.lower() == 'bond' %}
|
||||
[Bond]
|
||||
Mode={{ item.value.bond_mode | default('balance-rr') }}
|
||||
PrimaryReselectPolicy=always
|
||||
MIIMonitorSec=1s
|
||||
{% endif %}
|
||||
{% if item.value.type.lower() == 'vlan' %}
|
||||
[VLAN]
|
||||
Id={{ item.key.partition('.')[2] }}
|
||||
{% endif %}
|
||||
|
||||
# EOF
|
||||
Reference in New Issue
Block a user