From c56629e4edeca4729c04bcc7c8185b45e3ee7fd2 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 17 Sep 2018 14:38:05 -0400 Subject: [PATCH] cloud: Switch to use sda2 for root TODO: Replace this whole pipeline with assembler. --- Jenkinsfile.cloud | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile.cloud b/Jenkinsfile.cloud index 370e2b3f..e19a6268 100644 --- a/Jenkinsfile.cloud +++ b/Jenkinsfile.cloud @@ -134,8 +134,10 @@ node(NODE) { def img_prefix, commit, version, dirpath, qcow, vmdk, ec2, vagrant_libvirt stage("Postprocessing") { // just introspect after the fact to avoid race conditions + // FIXME: Use labels like https://github.com/coreos/coreos-assembler/pull/95 + // But probably better to ditch all of this and use the assembler commit = utils.sh_capture(""" - LIBGUESTFS_BACKEND=direct virt-cat -a ${image} -m /dev/coreos/root:/ \ + LIBGUESTFS_BACKEND=direct virt-cat -a ${image} -m /dev/sda2:/ \ /ostree/repo/refs/remotes/rhcos/${ref} """)