blob: 7c02040502b3eac7bd87e34bf54f6a26c8c5e888 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{%- extends 'boot/generic-base-boot.jinja2' %}
{%- set boot_method = "grub" %}
{%- block main %}
{{ super() }}
{%- if rootfs_type == 'nbd' %}
protocols:
lava-xnbd:
port: auto
# context allows specific values to be overridden or included
context:
extra_kernel_args: initrd={{ initrd }} systemd.mask=systemd-networkd.service
{%- endif %}
{% endblock %}
{%- block boot %}
{{ super() }}
commands: {{ boot_commands|default("ramdisk") }}
{%- if rootfs_type == 'nbd' %}
transfer_overlay:
download_command: wget
unpack_command: tar -C / -xvpf
{%- endif %}
{%- endblock %}
{%- block deploy -%}
{{ super() }}
kernel:
url: {{ kernel_url }}
type: {{ kernel_type }}
{%- if rootfs_type == 'ramdisk' %}
ramdisk:
url: {{ initrd_url }}
compression: {{ initrd_compression }}
{%- elif rootfs_type == 'nbd' %}
initrd:
url: {{ initrd_url }}
allow_modify: false
nbdroot:
url: {{ rootfs_url }}
compression: {{ rootfs_compression }}
{%- endif %}
{%- if modules_url %}
modules:
url: {{ modules_url }}
compression: {{ modules_compression }}
{%- endif %}
{%- endblock %}
|