Skip to content

Commit 7a36a33

Browse files
committed
Add hyperv-guest, baremetal, qemu-guest, and marketplace variant configs for x86_64 and aarch64
1 parent edf199a commit 7a36a33

20 files changed

+574
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
storage:
2+
bootType: efi
3+
4+
disks:
5+
- partitionTableType: gpt
6+
maxSize: 620M
7+
partitions:
8+
- id: esp
9+
type: esp
10+
start: 1M
11+
end: 9M
12+
13+
- id: rootfs
14+
type: root
15+
start: 9M
16+
17+
filesystems:
18+
- deviceId: esp
19+
type: fat32
20+
mountPoint:
21+
path: /boot/efi
22+
options: umask=0077
23+
24+
- deviceId: rootfs
25+
type: ext4
26+
mountPoint:
27+
path: /
28+
29+
os:
30+
bootloader:
31+
resetType: hard-reset
32+
33+
hostname: azure-linux
34+
35+
kernelCommandLine:
36+
extraCommandLine:
37+
- console=tty0
38+
- console=ttyS0
39+
- rd.info
40+
- log_buf_len=1M
41+
42+
selinux:
43+
mode: enforcing
44+
45+
packages:
46+
installLists:
47+
- packagelists/baremetal-packages.yaml
48+
- packagelists/base-image-packages.yaml
49+
- packagelists/cloud-init-packages.yaml
50+
- packagelists/selinux.yaml
51+
52+
scripts:
53+
finalizeCustomization:
54+
- path: scripts/cleanup.sh

toolkit/imageconfigs/baremetal.yaml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
storage:
2+
bootType: efi
3+
4+
disks:
5+
- partitionTableType: gpt
6+
maxSize: 554M
7+
partitions:
8+
- id: esp
9+
type: esp
10+
start: 1M
11+
end: 9M
12+
13+
- id: rootfs
14+
type: root
15+
start: 9M
16+
17+
filesystems:
18+
- deviceId: esp
19+
type: fat32
20+
mountPoint:
21+
path: /boot/efi
22+
options: umask=0077
23+
24+
- deviceId: rootfs
25+
type: ext4
26+
mountPoint:
27+
path: /
28+
29+
os:
30+
bootloader:
31+
resetType: hard-reset
32+
33+
hostname: azure-linux
34+
35+
kernelCommandLine:
36+
extraCommandLine:
37+
- console=tty0
38+
- console=ttyS0
39+
- rd.info
40+
- log_buf_len=1M
41+
42+
selinux:
43+
mode: enforcing
44+
45+
packages:
46+
installLists:
47+
- packagelists/baremetal-packages.yaml
48+
- packagelists/base-image-packages.yaml
49+
- packagelists/cloud-init-packages.yaml
50+
- packagelists/selinux.yaml
51+
52+
scripts:
53+
finalizeCustomization:
54+
- path: scripts/cleanup.sh
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
storage:
2+
bootType: efi
3+
4+
disks:
5+
- partitionTableType: gpt
6+
maxSize: 4096M
7+
partitions:
8+
- id: esp
9+
type: esp
10+
start: 1M
11+
end: 9M
12+
13+
- id: rootfs
14+
type: root
15+
start: 9M
16+
17+
filesystems:
18+
- deviceId: esp
19+
type: fat32
20+
mountPoint:
21+
path: /boot/efi
22+
options: umask=0077
23+
24+
- deviceId: rootfs
25+
type: ext4
26+
mountPoint:
27+
path: /
28+
29+
os:
30+
bootloader:
31+
resetType: hard-reset
32+
33+
hostname: azurelinux
34+
35+
packages:
36+
installLists:
37+
- packagelists/hyperv-packages.yaml
38+
- packagelists/core-packages-image-aarch64.yaml
39+
- packagelists/cloud-init-packages.yaml
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
storage:
2+
bootType: efi
3+
4+
disks:
5+
- partitionTableType: gpt
6+
maxSize: 4096M
7+
partitions:
8+
- id: esp
9+
type: esp
10+
start: 1M
11+
end: 9M
12+
13+
- id: rootfs
14+
type: root
15+
start: 9M
16+
17+
filesystems:
18+
- deviceId: esp
19+
type: fat32
20+
mountPoint:
21+
path: /boot/efi
22+
options: umask=0077
23+
24+
- deviceId: rootfs
25+
type: ext4
26+
mountPoint:
27+
path: /
28+
29+
os:
30+
bootloader:
31+
resetType: hard-reset
32+
33+
hostname: azurelinux
34+
35+
packages:
36+
installLists:
37+
- packagelists/hyperv-packages.yaml
38+
- packagelists/core-packages-image.yaml
39+
- packagelists/cloud-init-packages.yaml
40+
- packagelists/virt-guest-packages.yaml
+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
storage:
2+
bootType: legacy
3+
4+
disks:
5+
- partitionTableType: gpt
6+
maxSize: 5000M
7+
partitions:
8+
- id: reserved
9+
type: bios-grub
10+
start: 1M
11+
end: 9M
12+
13+
- id: boot
14+
type: xbootldr
15+
start: 9M
16+
end: 509M
17+
18+
- id: rootfs
19+
type: root
20+
start: 509M
21+
22+
filesystems:
23+
- deviceId: boot
24+
type: ext4
25+
mountPoint:
26+
path: /boot
27+
28+
- deviceId: rootfs
29+
type: ext4
30+
mountPoint:
31+
path: /
32+
33+
os:
34+
bootloader:
35+
resetType: hard-reset
36+
37+
hostname: azurelinux
38+
39+
kernelCommandLine:
40+
extraCommandLine:
41+
- console=ttyS0
42+
43+
packages:
44+
installLists:
45+
- packagelists/azurevm-packages.yaml
46+
- packagelists/core-packages-image.yaml
47+
- packagelists/hyperv-packages.yaml
48+
- packagelists/marketplace-tools-packages.yaml
49+
50+
additionalFiles:
51+
- source: additionalconfigs/51-ptp-hyperv.rules
52+
destination: /etc/udev/rules.d/51-ptp-hyperv.rules
53+
54+
- source: additionalconfigs/chrony.cfg
55+
destination: /etc/chrony.conf
56+
57+
- source: additionalconfigs/cloud-init.cfg
58+
destination: /etc/cloud/cloud.cfg
59+
60+
- source: additionalconfigs/wait-for-ptp-hyperv.conf
61+
destination: /etc/systemd/system/chronyd.service.d/wait-for-ptp-hyperv.conf
62+
63+
scripts:
64+
finalizeCustomization:
65+
- path: additionalconfigs/configure-systemd-networkd.sh
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
storage:
2+
bootType: efi
3+
4+
disks:
5+
- partitionTableType: gpt
6+
maxSize: 5000M
7+
partitions:
8+
- id: esp
9+
type: esp
10+
start: 1M
11+
end: 65M
12+
13+
- id: boot
14+
type: xbootldr
15+
start: 65M
16+
end: 565M
17+
18+
- id: rootfs
19+
type: root
20+
start: 565M
21+
22+
filesystems:
23+
- deviceId: esp
24+
type: fat32
25+
mountPoint:
26+
path: /boot/efi
27+
options: umask=0077
28+
29+
- deviceId: boot
30+
type: ext4
31+
mountPoint:
32+
path: /boot
33+
34+
- deviceId: rootfs
35+
type: ext4
36+
mountPoint:
37+
path: /
38+
39+
os:
40+
bootloader:
41+
resetType: hard-reset
42+
43+
hostname: azurelinux
44+
45+
kernelCommandLine:
46+
extraCommandLine:
47+
- console=tty1
48+
- console=ttyAMA0
49+
- earlycon=pl011,0xeffec000
50+
- initcall_blacklist=arm_pmu_acpi_init
51+
52+
packages:
53+
installLists:
54+
- packagelists/azurevm-packages.yaml
55+
- packagelists/core-packages-image.yaml
56+
- packagelists/hyperv-packages.yaml
57+
- packagelists/marketplace-tools-packages.yaml
58+
59+
additionalFiles:
60+
- source: additionalconfigs/51-ptp-hyperv.rules
61+
destination: /etc/udev/rules.d/51-ptp-hyperv.rules
62+
63+
- source: additionalconfigs/chrony.cfg
64+
destination: /etc/chrony.conf
65+
66+
- source: additionalconfigs/cloud-init.cfg
67+
destination: /etc/cloud/cloud.cfg
68+
69+
- source: additionalconfigs/wait-for-ptp-hyperv.conf
70+
destination: /etc/systemd/system/chronyd.service.d/wait-for-ptp-hyperv.conf
71+
72+
scripts:
73+
finalizeCustomization:
74+
- path: additionalconfigs/configure-systemd-networkd.sh

0 commit comments

Comments
 (0)