blob: 17dba2217992128776a8d4550f855c0c51c2d398 [file] [log] [blame]
Dennis Dmitriev12026772018-12-03 15:34:35 +02001{#- Management (admin) network. For nodes where deploy address must be configured as static (at least cfg*) #}
2{#- Provides: #}
3{#- (linux interface) + address #}
4{#- Requires: #}
5{#- _param:deploy_address #}
6{#- _param:deploy_network_netmask #}
7{#- _param:deploy_network_gateway #}
8{#- _param:dns_server01 #}
9{#- _param:dns_server02 #}
10 # {{ interfaces_role }}
11 {%- set interface_name = interfaces.keys()[0] %}
12 {{ interface_name }}:
13 enabled: true
14 name: {{ interface_name }}
15 proto: static
16 type: eth
17 address: ${_param:_esc}{_param:deploy_address}
18 netmask: ${_param:_esc}{_param:deploy_network_netmask} #lab03: 255.255.255.192
19 gateway: ${_param:_esc}{_param:deploy_network_gateway} #lab03: 172.16.49.1
20 name_servers:
21 - ${_param:_esc}{_param:dns_server01}
22 - ${_param:_esc}{_param:dns_server02}