diff --git a/internal/distro/fedora/distro.go b/internal/distro/fedora/distro.go index f8c1ecbfd..d714ec2e9 100644 --- a/internal/distro/fedora/distro.go +++ b/internal/distro/fedora/distro.go @@ -86,7 +86,7 @@ var ( rpmOstree: false, image: imageInstallerImage, buildPipelines: []string{"build"}, - payloadPipelines: []string{"os", "anaconda-tree", "rootfs-image", "efiboot-tree", "bootiso-tree"}, + payloadPipelines: []string{"anaconda-tree", "rootfs-image", "efiboot-tree", "os", "bootiso-tree", "bootiso"}, exports: []string{"bootiso"}, } @@ -126,7 +126,7 @@ var ( bootISO: false, image: iotContainerImage, buildPipelines: []string{"build"}, - payloadPipelines: []string{"ostree-tree", "ostree-commit", "container-tree", "container"}, + payloadPipelines: []string{"os", "ostree-commit", "container-tree", "container"}, exports: []string{"container"}, } @@ -146,7 +146,7 @@ var ( bootISO: true, image: iotInstallerImage, buildPipelines: []string{"build"}, - payloadPipelines: []string{"anaconda-tree", "rootfs-image", "efiboot-tree", "bootiso-tree"}, + payloadPipelines: []string{"anaconda-tree", "rootfs-image", "efiboot-tree", "bootiso-tree", "bootiso"}, exports: []string{"bootiso"}, } diff --git a/internal/distro/rhel9/bare_metal.go b/internal/distro/rhel9/bare_metal.go index cf13dc4b3..62d782705 100644 --- a/internal/distro/rhel9/bare_metal.go +++ b/internal/distro/rhel9/bare_metal.go @@ -22,8 +22,8 @@ var ( }, image: tarImage, buildPipelines: []string{"build"}, - payloadPipelines: []string{"os", "root-tar"}, - exports: []string{"root-tar"}, + payloadPipelines: []string{"os", "archive"}, + exports: []string{"archive"}, } imageInstaller = imageType{ @@ -39,7 +39,7 @@ var ( bootable: true, image: imageInstallerImage, buildPipelines: []string{"build"}, - payloadPipelines: []string{"os", "anaconda-tree", "bootiso-tree", "bootiso"}, + payloadPipelines: []string{"anaconda-tree", "rootfs-image", "efiboot-tree", "os", "bootiso-tree", "bootiso"}, exports: []string{"bootiso"}, } ) diff --git a/internal/distro/rhel9/edge.go b/internal/distro/rhel9/edge.go index f604019fc..4d5fb1e24 100644 --- a/internal/distro/rhel9/edge.go +++ b/internal/distro/rhel9/edge.go @@ -124,7 +124,7 @@ var ( bootISO: true, image: edgeSimplifiedInstallerImage, buildPipelines: []string{"build"}, - payloadPipelines: []string{"image-tree", "image", "archive", "coi-tree", "efiboot-tree", "bootiso-tree", "bootiso"}, + payloadPipelines: []string{"image-tree", "image", "xz", "coi-tree", "efiboot-tree", "bootiso-tree", "bootiso"}, exports: []string{"bootiso"}, basePartitionTables: edgeBasePartitionTables, }