-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdefault-iso-x86_64.yml
More file actions
63 lines (54 loc) · 1.4 KB
/
default-iso-x86_64.yml
File metadata and controls
63 lines (54 loc) · 1.4 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
image:
name: minimal-os-image-ubuntu
version: "26.04"
target:
os: ubuntu
dist: ubuntu26
arch: x86_64
imageType: iso # Image type, valid value: [raw, iso].
disk:
name: Default_ISO
partitionTableType: gpt # Partition table type, valid value: [gpt, mbr]
partitions: # Required for raw, optional for ISO, not needed for rootfs.
- id: boot
type: esp
flags:
- esp
- boot
start: 1MiB
end: 513MiB
fsType: fat32
mountPoint: /boot/efi
- id: rootfs
type: linux-root-amd64
start: 513MiB
end: "0" # 0 means use the rest of the disk space
fsType: ext4
mountPoint: /
systemConfig: # Required
name: Default_ISO
description: Default yml configuration for iso image
initramfs:
template: default-initrd-x86_64.yml
bootloader:
bootType: efi # (efi or legacy)
provider: grub # (grub for efi and legacy mode, or systemd-boot for efi mode)
packages:
- ubuntu-minimal
- grub2-common
- grub-efi-amd64-bin
- initramfs-tools
- dracut-core
- systemd
- cryptsetup-bin
- systemd-resolved
- efibootmgr
additionalFiles:
- local: ../additionalfiles/dhcp.network
final: /etc/systemd/network/dhcp.network
- local: ../additionalfiles/ubuntu-resolute.list
final: /etc/apt/sources.list.d/ubuntu-resolute.list
kernel:
name: kernel
packages:
- linux-image-generic