Skip to content

Commit 98d6501

Browse files
Enable RockyLinux-8 on OVA tests (#1801)
* Enable RockyLinux-8 on OVA tests Signed-off-by: Marcus Noble <[email protected]> * fix boot command for rockylinux 8 --------- Signed-off-by: Marcus Noble <[email protected]> Co-authored-by: Simon Weald <[email protected]>
1 parent beccf0e commit 98d6501

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
{
22
"boot_command_prefix": "<up><tab> text inst.ks=",
3-
"boot_command_suffix": "/8/ks.cfg<enter><wait><enter>",
4-
"boot_media_path": "http://{{ .HTTPIP }}:{{ .HTTPPort }}",
3+
"boot_command_suffix": "hd:LABEL=cidata:/ks.cfg<enter>",
54
"build_name": "rockylinux-8",
5+
"cd_content_location": "./packer/ova/linux/{{user `distro_name`}}/http/{{user `distro_version`}}/*",
6+
"cd_label": "cidata",
67
"distro_arch": "amd64",
78
"distro_name": "rockylinux",
89
"distro_version": "8",
910
"epel_rpm_gpg_key": "https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8",
1011
"guest_os_type": "rockylinux-64",
11-
"iso_checksum": "06019fd7c4f956b2b0ed37393e81c577885e4ebd518add249769846711a09dc4",
12+
"iso_checksum": "2c735d3b0de921bd671a0e2d08461e3593ac84f64cdaef32e3ed56ba01f74f4b",
1213
"iso_checksum_type": "sha256",
13-
"iso_url": "https://download.rockylinux.org/pub/rocky/8/isos/x86_64/Rocky-8.9-x86_64-minimal.iso",
14+
"iso_url": "https://download.rockylinux.org/pub/rocky/8/isos/x86_64/Rocky-8.10-x86_64-minimal.iso",
1415
"os_display_name": "RockyLinux 8",
1516
"redhat_epel_rpm": "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm",
1617
"shutdown_command": "/sbin/halt -h -p",
18+
"vmx_version": "20",
1719
"vsphere_guest_os_type": "rockylinux_64Guest"
1820
}

images/capi/scripts/ci-ova.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,10 @@ export ARTIFACTS="${ARTIFACTS:-${PWD}/_artifacts}"
2828
# - Any efi targets (to reduce duplicate OSs)
2929
# The following are currently having issues running in the
3030
# test environment so are specifically excluded for now
31-
# - RockyLinux-8
3231
# - Photon-4
3332
TARGETS=( $(make build-node-ova-vsphere-all --recon -d | grep "Must remake" | \
3433
grep -v build-node-ova-vsphere-all | \
3534
grep -E -v 'rhel|windows|efi' | \
36-
grep -v build-node-ova-vsphere-rockylinux-8 | \
3735
grep -v build-node-ova-vsphere-photon-4 | \
3836
grep -E -o 'build-node-ova-vsphere-[a-zA-Z0-9\-]+' ) )
3937

0 commit comments

Comments
 (0)