Skip to content

Commit 8fb73c9

Browse files
authored
Merge pull request #82 from bastelfreak/docs
README.md: Cleanup whitespace, use proper syntax highlighting
2 parents 9589cc6 + bc710de commit 8fb73c9

File tree

1 file changed

+99
-80
lines changed

1 file changed

+99
-80
lines changed

README.md

+99-80
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ It should be [installed on the puppetserver](https://www.puppet.com/docs/puppet/
2424
sudo puppetserver gem install rexml
2525
```
2626

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
2828
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
3030
changes if you use the diff_dir functionality.
3131

3232
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.
5050

5151
Remark: Debian >= 12 (bullseye) and Ubuntu >= 21.10 uses architecture
5252
specific packages. Currently amd64 is configured. Merge requests
53-
for other architectures are welcome!
53+
for other architectures are welcome!
5454

5555
## Description
5656

@@ -81,78 +81,89 @@ modules in addition to this module:
8181

8282
Install libvirt:
8383

84-
class {'libvirt': }
85-
84+
```puppet
85+
include 'libvirt'
86+
```
8687
Install including the DRBD hook:
8788

88-
class {'libvirt':
89-
qemu_hook => 'drbd',
90-
}
89+
```puppet
90+
class {'libvirt':
91+
qemu_hook => 'drbd',
92+
}
93+
```
9194

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
9396
directory. As a result all generated XML files are stored there, and diffs are
9497
visible.
9598

9699
Define a network (basic linux bridge example):
97100

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+
```
102107

103108
Define a network (advanced openvswitch example):
104109

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+
```
121128

122129
Define a domain (VM):
123130

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+
```
145154

146155
Define a storage pool:
147156

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+
```
156167

157168
Complete documentation is included in puppet doc format in the
158169
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.
169180
The profiles in hiera are hash merged, so you can define you're own profiles easily.
170181
Here is an example:
171182

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+
```
181194
182195
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+
```
188204

189205
To not repeat all profile values you can 'inherit' a profile, meaning you set a base profile with wich the profile will be merged.
190206
Let's take enlarge our profile:
191207

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+
```
199218
200219
which results in the hostdev been added to the default profile. Merge parameter in profileconfig defines how to merge,
201220
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
207226
Things currently not supported:
208227
* Operating Systems other than Debian, Ubuntu or RedHat. Adding support for other
209228
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
211230
profiles you are using.
212231
213232
Patches to support any of these (or other) missing features are welcome.

0 commit comments

Comments
 (0)