system/ansible/deployment_poc/templates/libvirt-storage-template.xml.j2

17 lines
352 B
Plaintext
Raw Normal View History

<volume type='file'>
<name>{{ inventory_hostname }}_root_disk.qcow2</name>
<source>
</source>
<capacity unit='GB'>{{ disk }}</capacity>
<target>
<path>{{ storage.name }}</path>
<format type='qcow2'/>
<permissions>
<mode>0660</mode>
<owner>107</owner>
<group>107</group>
</permissions>
</target>
</volume>