@@ -24,9 +24,9 @@ It should be [installed on the puppetserver](https://www.puppet.com/docs/puppet/
24
24
sudo puppetserver gem install rexml
25
25
```
26
26
27
- Upgrade to version 5.x.x introduced types/providers for network, nwfilter and domains
27
+ Upgrade to version 5.x.x introduced types/providers for network, nwfilter and domains
28
28
replacing the execs used before version 5.0.0. To compare the XML's generated with puppet and
29
- the actual running XML's generated with virsh they are sorted which leads to display lots of
29
+ the actual running XML's generated with virsh they are sorted which leads to display lots of
30
30
changes if you use the diff_dir functionality.
31
31
32
32
Version 5.0.0 also introduce a generic template for network and nwfilter which should be more flexible
@@ -50,7 +50,7 @@ with disk replication over DRBD. But this is completely optional.
50
50
51
51
Remark: Debian >= 12 (bullseye) and Ubuntu >= 21.10 uses architecture
52
52
specific packages. Currently amd64 is configured. Merge requests
53
- for other architectures are welcome!
53
+ for other architectures are welcome!
54
54
55
55
## Description
56
56
@@ -81,78 +81,89 @@ modules in addition to this module:
81
81
82
82
Install libvirt:
83
83
84
- class {'libvirt': }
85
-
84
+ ``` puppet
85
+ include 'libvirt'
86
+ ```
86
87
Install including the DRBD hook:
87
88
88
- class {'libvirt':
89
- qemu_hook => 'drbd',
90
- }
89
+ ``` puppet
90
+ class {'libvirt':
91
+ qemu_hook => 'drbd',
92
+ }
93
+ ```
91
94
92
- If you want to see the diffs of the xml file generated, set libvirt::diff_dir to a
95
+ If you want to see the diffs of the xml file generated, set libvirt::diff_dir to a
93
96
directory. As a result all generated XML files are stored there, and diffs are
94
97
visible.
95
98
96
99
Define a network (basic linux bridge example):
97
100
98
- libvirt::network { 'net-simple':
99
- forward_mode => 'bridge',
100
- bridge => 'br-simple',
101
- }
101
+ ``` puppet
102
+ libvirt::network { 'net-simple':
103
+ forward_mode => 'bridge',
104
+ bridge => 'br-simple',
105
+ }
106
+ ```
102
107
103
108
Define a network (advanced openvswitch example):
104
109
105
- libvirt::network { 'net-ovs':
106
- forward_mode => 'bridge',
107
- bridge => 'br-ovs',
108
- virtualport_type => 'openvswitch',
109
- autostart => true,
110
- portgroups => [
111
- {'name' => 'intern',
112
- 'trunk' => false,
113
- 'vlan_tag' => '2',
114
- },
115
- {'name' => 'trunk',
116
- 'trunk' => true,
117
- 'vlan_tag' => ['100', '101', '102', ],
118
- },
119
- ],
120
- }
110
+ ``` puppet
111
+ libvirt::network { 'net-ovs':
112
+ forward_mode => 'bridge',
113
+ bridge => 'br-ovs',
114
+ virtualport_type => 'openvswitch',
115
+ autostart => true,
116
+ portgroups => [
117
+ {'name' => 'intern',
118
+ 'trunk' => false,
119
+ 'vlan_tag' => '2',
120
+ },
121
+ {'name' => 'trunk',
122
+ 'trunk' => true,
123
+ 'vlan_tag' => ['100', '101', '102', ],
124
+ },
125
+ ],
126
+ }
127
+ ```
121
128
122
129
Define a domain (VM):
123
130
124
- libvirt::domain { 'my-domain':
125
- devices_profile => 'default',
126
- dom_profile => 'default',
127
- boot => 'hd',
128
- domconf => { memory => { values => '2048', attrs => { unit => 'MiB' }}},
129
- disks => [{'type' => 'block',
130
- 'device' => 'disk',
131
- 'source' => {'dev' => '/dev/vm-pool/my-domain.img'},
132
- },
133
- {'type' => 'file',
134
- 'device' => 'disk',
135
- 'source' => {'dev' => '/var/lib/libvirt/images/my-disk.qcow2'},
136
- 'bus' => 'virtio',
137
- 'driver' => {'name' => 'qemu',
138
- 'type' => 'qcow2',
139
- 'cache' => 'none',
140
- },
141
- ],
142
- interfaces => [{'network' => 'net-simple'},],
143
- autostart => true,
144
- }
131
+ ```
132
+ libvirt::domain { 'my-domain':
133
+ devices_profile => 'default',
134
+ dom_profile => 'default',
135
+ boot => 'hd',
136
+ domconf => { memory => { values => '2048', attrs => { unit => 'MiB' }}},
137
+ disks => [{'type' => 'block',
138
+ 'device' => 'disk',
139
+ 'source' => {'dev' => '/dev/vm-pool/my-domain.img'},
140
+ },
141
+ {'type' => 'file',
142
+ 'device' => 'disk',
143
+ 'source' => {'dev' => '/var/lib/libvirt/images/my-disk.qcow2'},
144
+ 'bus' => 'virtio',
145
+ 'driver' => {'name' => 'qemu',
146
+ 'type' => 'qcow2',
147
+ 'cache' => 'none',
148
+ },
149
+ ],
150
+ interfaces => [{'network' => 'net-simple'},],
151
+ autostart => true,
152
+ }
153
+ ```
145
154
146
155
Define a storage pool:
147
156
148
- libvirt_pool { 'default' :
149
- ensure => present,
150
- type => 'logical',
151
- autostart => true,
152
- sourcedev => '/dev/sda5',
153
- sourcename => 'vm',
154
- target => '/dev/vm',
155
- }
157
+ ``` puppet
158
+ libvirt_pool { 'default' :
159
+ ensure => present,
160
+ type => 'logical',
161
+ autostart => true,
162
+ sourcedev => '/dev/sda5',
163
+ sourcename => 'vm',
164
+ target => '/dev/vm',
165
+ }
166
+ ```
156
167
157
168
Complete documentation is included in puppet doc format in the
158
169
manifest files or in the REFERENCE.md file.
@@ -169,33 +180,41 @@ The default profile used is defined in hiera in the data/profiles directory.
169
180
The profiles in hiera are hash merged, so you can define you're own profiles easily.
170
181
Here is an example:
171
182
172
- libvirt::profiles::devices:
173
- myprofile:
174
- hostdev:
175
- attrs:
176
- mode: 'capabilities'
177
- type: 'misc'
178
- values:
179
- source:
180
- values: '/dev/input/event3'
183
+ ``` yaml
184
+ libvirt::profiles::devices :
185
+ myprofile :
186
+ hostdev :
187
+ attrs :
188
+ mode : ' capabilities'
189
+ type : ' misc'
190
+ values :
191
+ source :
192
+ values : ' /dev/input/event3'
193
+ ` ` `
181
194
182
195
will result in a device (without the default devices...):
183
- <hostdev mode =' capabilities ' type =' misc ' >
184
- <source >
185
- <char >/dev/input/event3</char >
186
- </source >
187
- </hostdev >
196
+
197
+ ` ` ` xml
198
+ <hostdev mode='capabilities' type='misc'>
199
+ <source>
200
+ <char>/dev/input/event3</char>
201
+ </source>
202
+ </hostdev>
203
+ ```
188
204
189
205
To not repeat all profile values you can 'inherit' a profile, meaning you set a base profile with wich the profile will be merged.
190
206
Let's take enlarge our profile:
191
207
192
- libvirt::profiles::devices:
193
- myprofile:
194
- profileconfig:
195
- base: 'default'
196
- merge: 'merge'
197
- hostdev:
198
- ...
208
+ ``` yaml
209
+ ---
210
+ libvirt::profiles::devices :
211
+ myprofile :
212
+ profileconfig :
213
+ base : ' default'
214
+ merge : ' merge'
215
+ hostdev :
216
+ ...
217
+ ` ` `
199
218
200
219
which results in the hostdev been added to the default profile. Merge parameter in profileconfig defines how to merge,
201
220
valid values are merge (default) or deep for a deep merge.
@@ -207,7 +226,7 @@ Hint: To better see what is changing you can set libvirt::diff_dir to a director
207
226
Things currently not supported:
208
227
* Operating Systems other than Debian, Ubuntu or RedHat. Adding support for other
209
228
systems is a matter of defining the relevant parameters in hiera.
210
- * Documentation always needs some love ;) I would especially appreciate some examples of
229
+ * Documentation always needs some love ;) I would especially appreciate some examples of
211
230
profiles you are using.
212
231
213
232
Patches to support any of these (or other) missing features are welcome.
0 commit comments