d5e28362f2
Currently we have mixed extensions of .yml and .yaml, this patch is an effort to standardize all yaml documents as .yaml Change-Id: I7eb815584de5856bbdac9a828ccad8518e8c1729
14 lines
390 B
YAML
14 lines
390 B
YAML
libvirt_pool:
|
|
name: airship
|
|
path: "/var/lib/airship"
|
|
pool_action: create
|
|
libvirt_pool_template_default: |
|
|
<pool type="dir">
|
|
<name>{{ libvirt_pool.name }}</name>
|
|
{% if 'capacity' in libvirt_pool %}
|
|
<capacity>{{ libvirt_pool.capacity }}</capacity>
|
|
{% endif %}
|
|
<target>
|
|
<path>{{ libvirt_pool.path | default('placeholder_value') }}</path>
|
|
</target>
|
|
</pool> |