diff --git a/scripts/ci-e2e.sh b/scripts/ci-e2e.sh index f0ab15963c..2d46d85024 100755 --- a/scripts/ci-e2e.sh +++ b/scripts/ci-e2e.sh @@ -67,7 +67,7 @@ source "${M3_DEV_ENV_PATH}/lib/ironic_basic_auth.sh" source "${M3_DEV_ENV_PATH}/lib/ironic_tls_setup.sh" # image for live iso testing -export LIVE_ISO_IMAGE="https://artifactory.nordix.org/artifactory/metal3/images/iso/minimal_linux_live-v2.iso" +export LIVE_ISO_IMAGE="https://artifactory.nordix.org/artifactory/metal3/images/iso/minimal_linux_live-v3-uefi.iso" # Generate credentials BMO_OVERLAYS=( diff --git a/test/e2e/live_iso_test.go b/test/e2e/live_iso_test.go index 02d679d2de..9b35e6cff6 100644 --- a/test/e2e/live_iso_test.go +++ b/test/e2e/live_iso_test.go @@ -92,7 +92,7 @@ func liveIsoTest() { By("Reading serial logs to verify the node was booted from live ISO image") Eventually(func(g Gomega) { - cmd := fmt.Sprintf("sudo cat %s | grep '# Welcome'", serialLogFile) + cmd := fmt.Sprintf("sudo grep 'Minimal Linux Live' '%s'", serialLogFile) output, err := exec.Command("/bin/sh", "-c", cmd).Output() g.Expect(err).ToNot(HaveOccurred()) g.Expect(output).ToNot(BeNil(), fmt.Sprintf("Failed to read serial logs from %s", serialLogFile))