Skip to content

Commit 2c093d6

Browse files
committed
add address element to interface to specify address in VM
1 parent 58c95eb commit 2c093d6

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

REFERENCE.md

+3
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,8 @@ The hashes support the following keys:
848848
* source: Hash of the source (network/bridge to attach to) (optional)
849849
this will translate to keyX = valueX for all key value pairs
850850
in the hash added as attributes to the source tag in the resulting XML
851+
* address: Hash of the address sub-element to decribe where the device is placed on the
852+
virtual bus presented to the guest.
851853
* type: Type of network card. Defaults to 'virtio'.
852854
* boot_order: Integer starting at 1 for the highest priority (shared with
853855
disks).
@@ -2117,6 +2119,7 @@ Struct[{
21172119
network => Optional[String[1]], # deprecated, do not use
21182120
source => Optional[Hash[String[1],String[1]]],
21192121
portgroup => Optional[String[1]], # deprecated, do not use, use source hash instead
2122+
address => Optional[Hash[String[1],String[1]]],
21202123
mac => Optional[String[1]],
21212124
filter => Optional[Variant[
21222125
String[1],

manifests/domain.pp

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@
6464
# * source: Hash of the source (network/bridge to attach to) (optional)
6565
# this will translate to keyX = valueX for all key value pairs
6666
# in the hash added as attributes to the source tag in the resulting XML
67+
# * address: Hash of the address sub-element to decribe where the device is placed on the
68+
# virtual bus presented to the guest.
6769
# * type: Type of network card. Defaults to 'virtio'.
6870
# * boot_order: Integer starting at 1 for the highest priority (shared with
6971
# disks).

templates/domain/device_interface.epp

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
<source <% $iface['source'].each |String $k, String $v| { %><%= $k %>='<%= $v %>' <% } %>/>
2727
<%- } elsif $iface['network'] { %><%# deprecated, do not use use source above -%>
2828
<source <%= pick($iface['interface_type'],'network') %>='<%= $iface['network'] %>'<% if 'portgroup' in $iface { %> portgroup='<%= $iface['portgroup'] %>'<% } %>/>
29+
<%- } -%>
30+
<%- if $iface['address'] { -%>
31+
<address <% $iface['address'].each |String $k, String $v| { %><%= $k %>='<%= $v %>' <% } %>/>
2932
<%- } -%>
3033
<model type='<% if 'type' in $iface { %><%= $iface['type'] %><% }else{ %>virtio<% } %>'/>
3134
<%- if $boot == 'per-device' and 'boot_order' in $iface { -%>

types/domain/interface.pp

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
network => Optional[String[1]], # deprecated, do not use
66
source => Optional[Hash[String[1],String[1]]],
77
portgroup => Optional[String[1]], # deprecated, do not use, use source hash instead
8+
address => Optional[Hash[String[1],String[1]]],
89
mac => Optional[String[1]],
910
filter => Optional[Variant[
1011
String[1],

0 commit comments

Comments
 (0)