Dennis Dmitriev | 1202677 | 2018-12-03 15:34:35 +0200 | [diff] [blame] | 1 | {#- 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} |