@@ -827,6 +827,9 @@ at all. The hashes support the following keys:
827
827
* boot_order: Integer starting at 1 for the highest priority (shared with
828
828
interfaces).
829
829
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
+
830
833
Default value: ` [] `
831
834
832
835
##### <a name =" -libvirt--domain--interfaces " ></a >` interfaces `
@@ -836,14 +839,26 @@ Data type: `Array[Libvirt::Domain::Interface]`
836
839
Array of hashes defining the network interfaces of this domain. Defaults to
837
840
no network interfaces.
838
841
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
847
862
848
863
Default value: ` [] `
849
864
@@ -910,6 +925,7 @@ this parameter is merged with the choosen profile,
910
925
to generate the final configuration.
911
926
Defaults to {} which does not change the profile.
912
927
see also libvirt::profiles for how to use profiles
928
+ Hint: This parameters allows to configure disks/network interfaces also
913
929
914
930
Default value: ` {} `
915
931
@@ -920,6 +936,7 @@ Data type: `Hash[String[1],Libvirt::Domain::Device]`
920
936
additional devices to attach to the vm
921
937
Same format as $devices, but without merging.
922
938
Defaults to {}
939
+ Hint: This parameters allows to configure disks/network interfaces also
923
940
924
941
Default value: ` {} `
925
942
@@ -2095,11 +2112,13 @@ Alias of
2095
2112
2096
2113
``` puppet
2097
2114
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[
2103
2122
String[1],
2104
2123
Struct[{
2105
2124
filterref => String[1],
@@ -2109,7 +2128,7 @@ Struct[{
2109
2128
]],
2110
2129
}],
2111
2130
]],
2112
- boot_order => Optional[Integer],
2131
+ boot_order => Optional[Integer],
2113
2132
}]
2114
2133
```
2115
2134
0 commit comments