Skip to content

Commit

Permalink
Add Oracle Linux template for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorific committed Jun 23, 2024
1 parent 683ef7a commit f871e55
Show file tree
Hide file tree
Showing 4 changed files with 206 additions and 0 deletions.
88 changes: 88 additions & 0 deletions oraclelinux/cloud/aarch64/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Oracle Linux Cloud Images

## Oracle Linux 9

```
cd oraclelinux/cloud/aarch64
packer init .
PACKER_LOG=1 packer build \
-var-file oracle-linux-9-aarch64.pkrvars.hcl \
oracle-linux.pkr.hcl
```

```
$ sudo qemu-img convert \
-f qcow2 \
-O qcow2 \
output-oracle-linux-9-aarch64/oracle-linux-9-aarch64.qcow2 \
/var/lib/libvirt/images/oracle-linux-9-aarch64.qcow2
$ sudo qemu-img resize \
-f qcow2 \
/var/lib/libvirt/images/oracle-linux-9-aarch64.qcow2 \
32G
```

```
osinfo-query os
```

```
virt-install \
--connect qemu:///system \
--name oracle-linux-9 \
--boot uefi \
--memory 4096 \
--vcpus 2 \
--os-variant ol8.0 \
--disk /var/lib/libvirt/images/oracle-linux-9-aarch64.qcow2,bus=virtio \
--network network=host-network,model=virtio \
--noautoconsole \
--console pty,target_type=serial \
--import \
--debug
virsh console oracle-linux-9
# login with packer user
# Check networking - you may notice that the network interface is down and
# the name of the interface generated in netplan doesn't match. If not
# correct, can regenerate with cloud-init
$ ip --brief a
lo UNKNOWN 127.0.0.1/8 ::1/128
eth0 UP 10.63.34.53/22 fe80::5054:ff:fed1:cf06/64
# Check cloud-init version
$ cloud-init --version
/usr/bin/cl
oud-init 23
.4-7.0.1.el
9_4
# Regenerate only the network config
$ sudo cloud-init clean --configs network
$ sudo cloud-init init --local
$ sudo reboot
$ ip --brief a
lo UNKNOWN 127.0.0.1/8 ::1/128
eth0 UP 10.63.34.53/22 fe80::5054:ff:fed1:cf06/64
$ sudo cloud-init status
status: done
# Disable cloud-init
$ sudo touch /etc/cloud/cloud-init.disabled
$ sudo cloud-init status
status: disabled
$ sudo shutdown -h now
```

```
$ virsh shutdown oracle-linux-9
$ virsh undefine oracle-linux-9 --nvram --remove-all-storage
```
3 changes: 3 additions & 0 deletions oraclelinux/cloud/aarch64/oracle-linux-9-aarch64.pkrvars.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
iso_checksum = "1f4e20190e87c76e8c3b4a9e15e660972386cbfa4f128e5cdcd8faa43a713d44"
iso_url = "https://yum.oracle.com/templates/OracleLinux/OL9/u4/aarch64/OL9U4_aarch64-kvm-cloud-b90.qcow2"
vm_name = "oracle-linux-9-aarch64"
102 changes: 102 additions & 0 deletions oraclelinux/cloud/aarch64/oracle-linux.pkr.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
packer {
required_plugins {
qemu = {
version = "~> 1"
source = "github.com/hashicorp/qemu"
}
}
}

variable "ssh_username" {
type = string
default = "packer"
}

variable "ssh_password" {
type = string
default = "packer"
}

variable "vm_name" {
type = string
default = "oracle-linux-9-aarch64"
}

source "file" "user_data" {
content = <<EOF
#cloud-config
user: ${var.ssh_username}
password: ${var.ssh_password}
chpasswd: { expire: False }
ssh_pwauth: True
EOF
target = "boot-${var.vm_name}/user-data"
}

source "file" "meta_data" {
content = <<EOF
instance-id: oracle-linux-cloud
local-hostname: oracle-linux-cloud
EOF
target = "boot-${var.vm_name}/meta-data"
}

build {
sources = ["sources.file.user_data", "sources.file.meta_data"]

provisioner "shell-local" {
inline = ["genisoimage -output boot-${var.vm_name}/cidata.iso -input-charset utf-8 -volid cidata -joliet -r boot-${var.vm_name}/user-data boot-${var.vm_name}/meta-data"]
}
}

variable "iso_checksum" {
type = string
default = "1f4e20190e87c76e8c3b4a9e15e660972386cbfa4f128e5cdcd8faa43a713d44"
}

variable "iso_url" {
type = string
default = "https://yum.oracle.com/templates/OracleLinux/OL9/u4/aarch64/OL9U4_aarch64-kvm-cloud-b90.qcow2"
}

source "qemu" "oracle-linux" {
disk_compression = true
disk_image = true
disk_size = "30G"
format = "qcow2"
iso_checksum = var.iso_checksum
iso_url = var.iso_url
machine_type = "virt,gic-version=max"
net_device = "virtio-net"
disk_interface = "virtio"
qemu_binary = "qemu-system-aarch64"
qemuargs = [
["-cdrom", "boot-${var.vm_name}/cidata.iso"],
["-cpu", "max"],
["-boot", "strict=on"],
["-monitor", "none"],
/* ["-device", "virtio-gpu-pci"], */
]
output_directory = "output-${var.vm_name}"
shutdown_command = "echo '${var.ssh_password}' | sudo -S shutdown -P now"
ssh_password = var.ssh_password
ssh_timeout = "120s"
ssh_username = var.ssh_username
vm_name = "${var.vm_name}.qcow2"
efi_boot = true
efi_firmware_code = "/usr/share/AAVMF/AAVMF_CODE.fd"
efi_firmware_vars = "/usr/share/AAVMF/AAVMF_VARS.fd"
}

build {
sources = ["source.qemu.oracle-linux"]

# cloud-init may still be running when we start executing scripts
# To avoid race conditions, make sure cloud-init is done first
provisioner "shell" {
execute_command = "echo '${var.ssh_password}' | {{ .Vars }} sudo -S -E sh -eux '{{ .Path }}'"
scripts = [
"../scripts/cloud-init-wait.sh",
]
}
}
13 changes: 13 additions & 0 deletions oraclelinux/cloud/scripts/cloud-init-wait.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

# https://bugs.launchpad.net/cloud-init/+bug/1890528
# cloud-init can return an exit status on wait other than 0
# so eat the exit status for now so it doesn't error packer
cloud_init_status=0
cloud-init status --wait || cloud_init_status=$?

if [ "$cloud_init_status" = "0" ]; then
echo "cloud-init succeeded"
else
echo "cloud-init exit=${cloud_init_status}"
fi

0 comments on commit f871e55

Please sign in to comment.