summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/templates/libvirt-storage-template.xml.j2
blob: 048dd2a11440d58bbf01a3b98a466eb9c851e4a4 (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>455</owner>
      <group>453</group>
    </permissions>
  </target>
</volume>