Skip to content

Commit 58c95eb

Browse files
committed
update REFERENCE, add hint for generic disk/network interfaces
1 parent 8e313c9 commit 58c95eb

File tree

2 files changed

+41
-14
lines changed

2 files changed

+41
-14
lines changed

REFERENCE.md

+33-14
Original file line numberDiff line numberDiff line change
@@ -827,6 +827,9 @@ at all. The hashes support the following keys:
827827
* boot_order: Integer starting at 1 for the highest priority (shared with
828828
interfaces).
829829

830+
Hint: if a special configuration is not possible using this parameter, you can use the
831+
$devices or $additionadevices parameter which make any configuration libvirt supports possible
832+
830833
Default value: `[]`
831834

832835
##### <a name="-libvirt--domain--interfaces"></a>`interfaces`
@@ -836,14 +839,26 @@ Data type: `Array[Libvirt::Domain::Interface]`
836839
Array of hashes defining the network interfaces of this domain. Defaults to
837840
no network interfaces.
838841
The hashes support the following keys:
839-
* mac: MAC address of the interface. Without a mac key, a random
840-
address will be assigned by libvirt. The MAC address should
841-
start with 52:54:00.
842-
* network: libvirt network to attach to (mandatory).
843-
* portgroup: portgroup to attach to (optional).
844-
* type: Type of network card. Defaults to 'virtio'.
845-
* boot_order: Integer starting at 1 for the highest priority (shared with
846-
disks).
842+
* interface_type: the type of the interface, currently supported:
843+
'network', 'bridge', 'vdpa', 'mcast', 'server', 'client', 'null', 'vds',
844+
defaults to 'network' if unset.
845+
* mac: MAC address of the interface. Without a mac key, a random
846+
address will be assigned by libvirt. The MAC address should
847+
start with 52:54:00.
848+
* source: Hash of the source (network/bridge to attach to) (optional)
849+
this will translate to keyX = valueX for all key value pairs
850+
in the hash added as attributes to the source tag in the resulting XML
851+
* type: Type of network card. Defaults to 'virtio'.
852+
* boot_order: Integer starting at 1 for the highest priority (shared with
853+
disks).
854+
Deprecated keys:
855+
* network: libvirt network to attach to (optional, depracated, use source).
856+
instead of this parameter, use source = { '[network|bridge]' => NETWORK }
857+
* portgroup: portgroup to attach to (optional, deprecated, use source).
858+
instead of this parameter, use source = { '[network|bridge]' => NETWORK, 'portgroup' => 'GROUP }
859+
860+
Hint: if a special configuration is not possible using this parameter, you can use the
861+
$devices or $additionadevices parameter which make any configuration libvirt supports possible
847862

848863
Default value: `[]`
849864

@@ -910,6 +925,7 @@ this parameter is merged with the choosen profile,
910925
to generate the final configuration.
911926
Defaults to {} which does not change the profile.
912927
see also libvirt::profiles for how to use profiles
928+
Hint: This parameters allows to configure disks/network interfaces also
913929

914930
Default value: `{}`
915931

@@ -920,6 +936,7 @@ Data type: `Hash[String[1],Libvirt::Domain::Device]`
920936
additional devices to attach to the vm
921937
Same format as $devices, but without merging.
922938
Defaults to {}
939+
Hint: This parameters allows to configure disks/network interfaces also
923940

924941
Default value: `{}`
925942

@@ -2095,11 +2112,13 @@ Alias of
20952112

20962113
```puppet
20972114
Struct[{
2098-
type => Optional[String[1]],
2099-
network => String[1],
2100-
portgroup => Optional[String[1]],
2101-
mac => Optional[String[1]],
2102-
filter => Optional[Variant[
2115+
type => Optional[String[1]],
2116+
interface_type => Optional[Enum['network','bridge', 'vdpa', 'mcast', 'server', 'client', 'null', 'vds']],
2117+
network => Optional[String[1]], # deprecated, do not use
2118+
source => Optional[Hash[String[1],String[1]]],
2119+
portgroup => Optional[String[1]], # deprecated, do not use, use source hash instead
2120+
mac => Optional[String[1]],
2121+
filter => Optional[Variant[
21032122
String[1],
21042123
Struct[{
21052124
filterref => String[1],
@@ -2109,7 +2128,7 @@ Struct[{
21092128
]],
21102129
}],
21112130
]],
2112-
boot_order => Optional[Integer],
2131+
boot_order => Optional[Integer],
21132132
}]
21142133
```
21152134

manifests/domain.pp

+8
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
# See the libvirt domain XML documentation for all possible values.
4949
# * boot_order: Integer starting at 1 for the highest priority (shared with
5050
# interfaces).
51+
#
52+
# Hint: if a special configuration is not possible using this parameter, you can use the
53+
# $devices or $additionadevices parameter which make any configuration libvirt supports possible
5154
# @param interfaces
5255
# Array of hashes defining the network interfaces of this domain. Defaults to
5356
# no network interfaces.
@@ -69,6 +72,9 @@
6972
# instead of this parameter, use source = { '[network|bridge]' => NETWORK }
7073
# * portgroup: portgroup to attach to (optional, deprecated, use source).
7174
# instead of this parameter, use source = { '[network|bridge]' => NETWORK, 'portgroup' => 'GROUP }
75+
#
76+
# Hint: if a special configuration is not possible using this parameter, you can use the
77+
# $devices or $additionadevices parameter which make any configuration libvirt supports possible
7278
# @param autostart
7379
# Wheter the libvirt autostart flag should be set. Defaults to true. Autostart
7480
# domains are started if the host is booted.
@@ -99,10 +105,12 @@
99105
# to generate the final configuration.
100106
# Defaults to {} which does not change the profile.
101107
# see also libvirt::profiles for how to use profiles
108+
# Hint: This parameters allows to configure disks/network interfaces also
102109
# @param additionaldevices
103110
# additional devices to attach to the vm
104111
# Same format as $devices, but without merging.
105112
# Defaults to {}
113+
# Hint: This parameters allows to configure disks/network interfaces also
106114
# @param replace
107115
# set this to true if you like to replace existing VM
108116
# configurations with puppet definitions (or if you change the config in puppet)

0 commit comments

Comments
 (0)