summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/templates/libvirt-storage-template.xml.j2
blob: 9ce3ff1035375b3447f26e07f3f62a3ae41ebbcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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>