debian-forge-composer/test/data/manifests
Christian Kellner d9ef268809 disk: use GenerateUUIDs in CreatePartitionTable
Instead of generating the UUIDs directly when new partitions are
created and separately for the boot and root partition, use the
new `PartitionTable.GenerateUUIDs` method to generate all UUIDs
that are missing in one go. Since this changes the order in
which the uuids are generated the test manifests UUIDs changed
and needed to be updated:
I used to following patch to get the updated manifests:

--- a/internal/distro/distro_test_common/distro_test_common.go
+++ b/internal/distro/distro_test_common/distro_test_common.go
@@ -105,6 +105,12 @@ func TestDistro_Manifest(t *testing.T, pipelinePath string, prefix string, regis
                                require.NoError(t, err)

                                diff := cmp.Diff(expected, actual)
+                               if diff != "" {
+                                       tt.Manifest = got
+                                       data, _ := json.MarshalIndent(tt, "", "  ")
+                                       path := filepath.Join("/tmp", filepath.Base(fileName))
+                                       _ = ioutil.WriteFile(path, data, 0644)
+                               }
                                require.Emptyf(t, diff, "Distro: %s\nArch: %s\nImage type: %s\nTest case file: %s\n", d.Name(), arch.Name(), imageType.Name(), fileName)
                        }
                })

And the following fish snippet to update the existing ones, using the
jq and sponge utilities:

for file in /tmp/rhel_85-*.json
  set filename (basename $file)
  jq -s '.[0].manifest = .[1].manifest | .[0]' test/data/manifests/$filename /tmp/$filename | sponge test/data/manifests/$filename
end
2022-02-22 19:23:41 +00:00
..
centos_8-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-aarch64-edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-aarch64-edge_container-boot.json test/data: regenerate manifests for CentOS 8 2021-10-21 15:16:04 +01:00
centos_8-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-aarch64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-aarch64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-ppc64le-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-ppc64le-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-ppc64le-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-edge_commit_rt-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-edge_container-boot.json test/data: regenerate manifests for CentOS 8 2021-10-21 15:16:04 +01:00
centos_8-x86_64-image_installer-boot.json RHEL-86: apply subscriptions and RHSM configuration only on RHEL 2022-01-11 17:08:19 +01:00
centos_8-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_8-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
centos_9-aarch64-ami-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-aarch64-edge_commit-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-aarch64-edge_container-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-aarch64-openstack-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-aarch64-qcow2-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-aarch64-qcow2_customize-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-aarch64-tar-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-ppc64le-qcow2-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-ppc64le-qcow2_customize-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-ppc64le-tar-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-s390x-qcow2-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-s390x-qcow2_customize-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-s390x-tar-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-ami-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-edge_commit-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-edge_commit_rt-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-edge_container-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-image_installer-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-openstack-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-qcow2-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-qcow2_customize-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-tar-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-vhd-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
centos_9-x86_64-vmdk-boot.json test: update manifests and image info 2022-02-18 10:39:08 +00:00
fedora_34-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-aarch64-oci-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-aarch64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-fedora_iot_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-fedora_iot_commit_debug-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-oci-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_34-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-aarch64-oci-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-aarch64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-fedora_iot_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-fedora_iot_commit_debug-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-oci-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
fedora_35-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-aarch64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-aarch64-rhel_edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-aarch64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-ppc64le-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-ppc64le-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-ppc64le-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-s390x-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-s390x-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-s390x-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-rhel_edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-rhel_edge_commit_rt-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_8-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-aarch64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-aarch64-rhel_edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-aarch64-rhel_edge_container-boot.json Test: regenerate all image test cases 2021-10-04 10:48:21 +02:00
rhel_84-aarch64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-ppc64le-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-ppc64le-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-ppc64le-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-s390x-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-s390x-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-rhel_edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-rhel_edge_commit_rt-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-rhel_edge_container-boot.json tools: use image_type_tags in repos used for image test cases 2021-12-16 18:07:50 +01:00
rhel_84-x86_64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_84-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-aarch64-ec2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-aarch64-edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-aarch64-edge_container-boot.json tools: use image_type_tags in repos used for image test cases 2021-12-16 18:07:50 +01:00
rhel_85-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-aarch64-qcow2_customize-boot.json disk: use GenerateUUIDs in CreatePartitionTable 2022-02-22 19:23:41 +00:00
rhel_85-aarch64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-ppc64le-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-ppc64le-qcow2_customize-boot.json disk: use GenerateUUIDs in CreatePartitionTable 2022-02-22 19:23:41 +00:00
rhel_85-ppc64le-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-s390x-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-s390x-qcow2_customize-boot.json disk: use GenerateUUIDs in CreatePartitionTable 2022-02-22 19:23:41 +00:00
rhel_85-s390x-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-ec2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-ec2_ha-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-edge_commit_rt-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-edge_container-boot.json tools: use image_type_tags in repos used for image test cases 2021-12-16 18:07:50 +01:00
rhel_85-x86_64-image_installer-boot.json (re)generate image test cases for image-installer on all distros 2021-12-21 09:59:17 +01:00
rhel_85-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-qcow2_customize-boot.json disk: use GenerateUUIDs in CreatePartitionTable 2022-02-22 19:23:41 +00:00
rhel_85-x86_64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_85-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_86-aarch64-ami-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-aarch64-ec2-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-aarch64-edge_commit-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-aarch64-edge_container-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-aarch64-openstack-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-aarch64-qcow2-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-aarch64-qcow2_customize-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-aarch64-tar-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-ppc64le-qcow2-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-ppc64le-qcow2_customize-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-ppc64le-tar-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-s390x-qcow2-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-s390x-qcow2_customize-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-s390x-tar-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-ami-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-ec2-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-ec2_ha-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-ec2_sap-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-edge_commit-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-edge_commit_rt-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-edge_container-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-image_installer-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-openstack-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-qcow2-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-qcow2_customize-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-tar-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-vhd-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_86-x86_64-vmdk-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-aarch64-ec2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-aarch64-edge_commit-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-aarch64-edge_container-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-aarch64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-aarch64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-ppc64le-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-ppc64le-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-ppc64le-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-s390x-qcow2-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-s390x-qcow2_customize-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-s390x-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-ec2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-ec2_ha-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-ec2_sap-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-edge_commit-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-x86_64-edge_commit_rt-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-x86_64-edge_container-boot.json test: regenerate RHEL 8.6 and 9.0 manifests 2022-02-16 10:49:55 +01:00
rhel_90-x86_64-image_installer-boot.json Use the latest RPMRepo snapshot for RHEL-9.0 image tests 2022-02-14 12:39:12 +01:00
rhel_90-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-aarch64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-aarch64-ec2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-aarch64-edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-aarch64-edge_container-boot.json tools: use image_type_tags in repos used for image test cases 2021-12-16 18:07:50 +01:00
rhel_90_beta-aarch64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-aarch64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-aarch64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-aarch64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-ppc64le-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-ppc64le-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-ppc64le-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-s390x-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-s390x-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-s390x-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-ami-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-ec2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-ec2_ha-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-ec2_sap-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-edge_commit-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-edge_commit_rt-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-edge_container-boot.json tools: use image_type_tags in repos used for image test cases 2021-12-16 18:07:50 +01:00
rhel_90_beta-x86_64-image_installer-boot.json (re)generate image test cases for image-installer on all distros 2021-12-21 09:59:17 +01:00
rhel_90_beta-x86_64-openstack-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-qcow2-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-qcow2_customize-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-tar-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-vhd-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00
rhel_90_beta-x86_64-vmdk-boot.json Regenerate all image test cases with the enhanced image-info 2022-02-15 15:56:56 +01:00