forked from AlmaLinux/cloud-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalmalinux_10_gcp.pkr.hcl
More file actions
146 lines (137 loc) · 5.19 KB
/
almalinux_10_gcp.pkr.hcl
File metadata and controls
146 lines (137 loc) · 5.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# AlmaLinux OS 10 Packer template for GCP VM images
source "qemu" "almalinux_10_gcp_x86_64" {
iso_url = local.iso_url_10_x86_64
iso_checksum = local.iso_checksum_10_x86_64
http_directory = var.http_directory
shutdown_command = var.root_shutdown_command
ssh_username = var.gencloud_ssh_username
ssh_password = var.gencloud_ssh_password
ssh_timeout = var.ssh_timeout
boot_command = var.gcp_boot_command_10_x86_64
boot_wait = var.boot_wait
accelerator = "kvm"
disk_interface = "virtio-scsi"
disk_size = var.gcp_disk_size
disk_cache = "unsafe"
disk_discard = "unmap"
disk_detect_zeroes = "unmap"
format = "raw"
headless = var.headless
machine_type = "q35"
memory = var.memory_x86_64
net_device = "virtio-net"
qemu_binary = var.qemu_binary
vm_name = "AlmaLinux-10-GCP-${var.os_ver_10}-${formatdate("YYYYMMDD", timestamp())}.${var.build_number}.x86_64.raw"
cpu_model = "host"
cpus = var.cpus
efi_boot = true
efi_firmware_code = var.ovmf_code
efi_firmware_vars = var.ovmf_vars
efi_drop_efivars = true
}
source "qemu" "almalinux_10_gcp_aarch64" {
iso_url = local.iso_url_10_aarch64
iso_checksum = local.iso_checksum_10_aarch64
http_directory = var.http_directory
shutdown_command = var.root_shutdown_command
ssh_username = var.gencloud_ssh_username
ssh_password = var.gencloud_ssh_password
ssh_timeout = var.ssh_timeout
boot_command = var.gcp_boot_command_10_aarch64
boot_wait = var.boot_wait
accelerator = "kvm"
firmware = var.aavmf_code
use_pflash = false
disk_interface = "virtio-scsi"
disk_size = var.gcp_disk_size
disk_cache = "unsafe"
disk_discard = "unmap"
disk_detect_zeroes = "unmap"
format = "raw"
headless = var.headless
machine_type = "virt,gic-version=max"
memory = var.memory_aarch64
net_device = "virtio-net"
qemu_binary = var.qemu_binary
vm_name = "AlmaLinux-10-GCP-${var.os_ver_10}-${formatdate("YYYYMMDD", timestamp())}.${var.build_number}.aarch64.raw"
cpu_model = "host"
cpus = var.cpus
qemuargs = [
["-boot", "strict=on"],
["-monitor", "none"]
]
}
source "qemu" "almalinux_10_gcp_64k_aarch64" {
iso_url = local.iso_url_10_aarch64
iso_checksum = local.iso_checksum_10_aarch64
http_directory = var.http_directory
shutdown_command = var.root_shutdown_command
ssh_username = var.gencloud_ssh_username
ssh_password = var.gencloud_ssh_password
ssh_timeout = var.ssh_timeout
boot_command = var.gcp_boot_command_10_64k_aarch64
boot_wait = var.boot_wait
accelerator = "kvm"
firmware = var.aavmf_code
use_pflash = false
disk_interface = "virtio-scsi"
disk_size = var.gcp_disk_size
disk_cache = "unsafe"
disk_discard = "unmap"
disk_detect_zeroes = "unmap"
format = "raw"
headless = var.headless
machine_type = "virt,gic-version=max"
memory = var.memory_aarch64
net_device = "virtio-net"
qemu_binary = var.qemu_binary
vm_name = "AlmaLinux-10-GCP-${var.os_ver_10}-${formatdate("YYYYMMDD", timestamp())}.${var.build_number}-64k.aarch64.raw"
cpu_model = "host"
cpus = var.cpus
qemuargs = [
["-boot", "strict=on"],
["-monitor", "none"]
]
}
build {
sources = [
"source.qemu.almalinux_10_gcp_x86_64",
"source.qemu.almalinux_10_gcp_aarch64",
"source.qemu.almalinux_10_gcp_64k_aarch64",
]
provisioner "ansible" {
galaxy_file = "./ansible/requirements.yml"
galaxy_force_install = true
collections_path = "./ansible/collections"
roles_path = "./ansible/roles"
playbook_file = "./ansible/gcp.yml"
ansible_env_vars = [
"ANSIBLE_PIPELINING=True",
"ANSIBLE_REMOTE_TEMP=/tmp",
"ANSIBLE_SSH_TRANSFER_METHOD=scp",
"ANSIBLE_SCP_EXTRA_ARGS=-O",
]
}
# copy SBOM metadata file into output
post-processor "shell-local" {
inline = [
"cp /tmp/sbom-data-$PACKER_BUILD_NAME.json output-$PACKER_BUILD_NAME/"
]
}
post-processor "shell-local" {
inline = [
"cd output-$PACKER_BUILD_NAME",
"mv AlmaLinux-10-GCP-${var.os_ver_10}-${formatdate("YYYYMMDD", timestamp())}.${var.build_number}.x86_64.raw disk.raw",
"tar -cf - disk.raw | pigz -c > AlmaLinux-10-GCP-${var.os_ver_10}-${formatdate("YYYYMMDD", timestamp())}.${var.build_number}.x86_64.tar.gz"
]
only = ["qemu.almalinux_10_gcp_x86_64"]
}
post-processor "shell-local" {
inline = [
"cd output-$PACKER_BUILD_NAME",
"mv AlmaLinux-10-GCP-${var.os_ver_10}-${formatdate("YYYYMMDD", timestamp())}.${var.build_number}.aarch64.raw disk.raw",
"tar -cf - disk.raw | pigz -c > AlmaLinux-10-GCP-${var.os_ver_10}-${formatdate("YYYYMMDD", timestamp())}.${var.build_number}.aarch64.tar.gz"
]
only = ["qemu.almalinux_10_gcp_aarch64"]
}
}