From c7a724c745fc23d836eb3810973728e268ee026c Mon Sep 17 00:00:00 2001 From: kenjpais Date: Wed, 24 Sep 2025 14:44:42 +0530 Subject: [PATCH 1/3] Enabled secureboot for cs10 testing --- pkg/infrastructure/vsphere/clusterapi/import.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/infrastructure/vsphere/clusterapi/import.go b/pkg/infrastructure/vsphere/clusterapi/import.go index 3e34e40f65..491873c920 100644 --- a/pkg/infrastructure/vsphere/clusterapi/import.go +++ b/pkg/infrastructure/vsphere/clusterapi/import.go @@ -199,12 +199,16 @@ func importRhcosOva(ctx context.Context, session *session.Session, folder *objec if vm == nil { return fmt.Errorf("error VirtualMachine not found, managed object id: %s", info.Entity.Value) } + // For cs10, we want to keep SecureBoot enabled if it's enabled in the OVA + // For other versions, we disable it to maintain backward compatibility if secureBoot { bootOptions, err := vm.BootOptions(ctx) if err != nil { return fmt.Errorf("failed to get boot options: %w", err) } - bootOptions.EfiSecureBootEnabled = ptr.To(false) + + // Keep SecureBoot enabled for cs10 + bootOptions.EfiSecureBootEnabled = ptr.To(true) err = vm.SetBootOptions(ctx, bootOptions) if err != nil { From 01a96039466fb1038860a1802f6bb961264ab2c8 Mon Sep 17 00:00:00 2001 From: kenjpais Date: Wed, 1 Oct 2025 18:57:39 +0530 Subject: [PATCH 2/3] Removed secureboot check --- .../vsphere/clusterapi/import.go | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/pkg/infrastructure/vsphere/clusterapi/import.go b/pkg/infrastructure/vsphere/clusterapi/import.go index 491873c920..465c114598 100644 --- a/pkg/infrastructure/vsphere/clusterapi/import.go +++ b/pkg/infrastructure/vsphere/clusterapi/import.go @@ -17,7 +17,6 @@ import ( "github.com/vmware/govmomi/vim25/mo" "github.com/vmware/govmomi/vim25/soap" "github.com/vmware/govmomi/vim25/types" - "k8s.io/utils/ptr" "sigs.k8s.io/cluster-api-provider-vsphere/pkg/session" "github.com/openshift/installer/pkg/types/vsphere" @@ -43,21 +42,6 @@ func debugCorruptOva(cachedImage string, err error) error { return fmt.Errorf("ova %s has a sha256 of %x and a size of %d bytes, failed to read the ovf descriptor %w", cachedImage, h.Sum(nil), written, err) } -func checkOvaSecureBoot(ovfEnvelope *ovf.Envelope) bool { - if ovfEnvelope.VirtualSystem != nil { - for _, vh := range ovfEnvelope.VirtualSystem.VirtualHardware { - for _, c := range vh.Config { - if c.Key == "bootOptions.efiSecureBootEnabled" { - if c.Value == "true" { - return true - } - } - } - } - } - return false -} - func importRhcosOva(ctx context.Context, session *session.Session, folder *object.Folder, cachedImage, clusterID, tagID, diskProvisioningType string, failureDomain vsphere.FailureDomain) error { // Name originally was cluster id + fd.region + fd.zone. This could cause length of ova to be longer than max allowed. // So for now, we are going to make cluster id + fd.name @@ -82,10 +66,6 @@ func importRhcosOva(ctx context.Context, session *session.Session, folder *objec return fmt.Errorf("failed to parse ovf: %w", err) } - // Some OVAs enable secure boot by default, this can cause - // issues with certain configurations - secureBoot := checkOvaSecureBoot(ovfEnvelope) - // The RHCOS OVA only has one network defined by default // The OVF envelope defines this. We need a 1:1 mapping // between networks with the OVF and the host @@ -199,22 +179,6 @@ func importRhcosOva(ctx context.Context, session *session.Session, folder *objec if vm == nil { return fmt.Errorf("error VirtualMachine not found, managed object id: %s", info.Entity.Value) } - // For cs10, we want to keep SecureBoot enabled if it's enabled in the OVA - // For other versions, we disable it to maintain backward compatibility - if secureBoot { - bootOptions, err := vm.BootOptions(ctx) - if err != nil { - return fmt.Errorf("failed to get boot options: %w", err) - } - - // Keep SecureBoot enabled for cs10 - bootOptions.EfiSecureBootEnabled = ptr.To(true) - - err = vm.SetBootOptions(ctx, bootOptions) - if err != nil { - return fmt.Errorf("failed to set boot options: %w", err) - } - } err = vm.MarkAsTemplate(ctx) if err != nil { From f411339a0f69187437920beb3e9bf303a42e2763 Mon Sep 17 00:00:00 2001 From: kenjpais Date: Tue, 11 Nov 2025 14:23:17 +0530 Subject: [PATCH 3/3] Updated image metadata to latest --- data/data/coreos/scos.json | 344 ++++++++++++++++++------------------- 1 file changed, 172 insertions(+), 172 deletions(-) diff --git a/data/data/coreos/scos.json b/data/data/coreos/scos.json index 6a80fc922d..3364486376 100644 --- a/data/data/coreos/scos.json +++ b/data/data/coreos/scos.json @@ -1,106 +1,106 @@ { "stream": "c10s", "metadata": { - "last-modified": "2025-07-01T21:24:39Z", - "generator": "plume cosa2stream 574b0e2" + "last-modified": "2025-11-05T23:46:18Z", + "generator": "plume cosa2stream 82410e1" }, "architectures": { "aarch64": { "artifacts": { "aws": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "vmdk.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-aws.aarch64.vmdk.gz", - "sha256": "b0371fc380afa1bb869305dca899a3d347869b97747e73d1df35a5e32e79a0a0", - "uncompressed-sha256": "c60e748fecf47790b3c7af07379f66413e24355aad572d3921f0bed15d714893" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-aws.aarch64.vmdk.gz", + "sha256": "22949d3b13b6eff3242ef4eaa9339914e5b087c2553fad4e1694e1453e70d74b", + "uncompressed-sha256": "ae403bf1a161edc2be5049228182d00bfed77e43f54d969fc6d713ab3fd9fcba" } } } }, "azure": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "vhd.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-azure.aarch64.vhd.gz", - "sha256": "dd2950dd9298cd8856e512e39ab1f7788e8355fa781c18433d16f41caa173212", - "uncompressed-sha256": "67a0d777c8164b6a1ad181efa616b8ebec9b07361e9e64b310bb60ab5e5e4be7" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-azure.aarch64.vhd.gz", + "sha256": "b03bcdfc67319458fd299f17b5046961f4162f7b569f6f3d8241161760aff7ea", + "uncompressed-sha256": "ecb4160445ca7c996a98a5d5ae174852f76dc5602b03968d1a083101f3ba484c" } } } }, "gcp": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "tar.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-gcp.aarch64.tar.gz", - "sha256": "783246d593e4c0da7218ab2cf22795a7fab68b2c22296efe7eb964c1aaf7b3f8" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-gcp.aarch64.tar.gz", + "sha256": "0cf2f7e46af421a7610f96e3b609ad65e0cb612fc5bee5ad3c083bc29edef9fd" } } } }, "metal": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "4k.raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-metal4k.aarch64.raw.gz", - "sha256": "643715c668eb89537ca111129bb785f2522a54923ba3d81c197fca94b062acc4", - "uncompressed-sha256": "89daf1ee1e828ce34db708e263ad17b258dfbcdeccccedfcff689e22c858c36a" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-metal4k.aarch64.raw.gz", + "sha256": "9f2812fd6fd8571c86caa252d401493b1d67320392def990f686a5f09c8ffb0d", + "uncompressed-sha256": "7458687f57269252e5e9203b6f0d9a3b18ce33a09fa3bc77edfa2d4c47c2d81c" } }, "iso": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-live-iso.aarch64.iso", - "sha256": "ccda764406ba1aa28e363f4043a952f5da5491b356c39b425bc608bf46034f2c" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-live-iso.aarch64.iso", + "sha256": "049e5587b3a31bea57a4d8390b3000bf6bd56867757b3778a2c7195d42fa4962" } }, "pxe": { "kernel": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-live-kernel.aarch64", - "sha256": "b28b9065579810f8d92d5ff40e84c21ac2dad3c7a8ce49b6f0b8409748cf829a" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-live-kernel.aarch64", + "sha256": "93e747252a7210f270d9869e8fd992f29ca725dd20ea73dd5a2c4c1e9c52b6a3" }, "initramfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-live-initramfs.aarch64.img", - "sha256": "6280ee3a1161c50632262aad6d259330ea1ae94baaf4e6116e73e2a53e382a69" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-live-initramfs.aarch64.img", + "sha256": "a8845278ae30bf0b922ecc2dd5c70c5bc46082be40612fa62fc48588c76a2fd9" }, "rootfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-live-rootfs.aarch64.img", - "sha256": "c7d681ce3245edb4367595138639dd9c9ba74da9a133006f2a0bc880c964bf7d" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-live-rootfs.aarch64.img", + "sha256": "9e285a0089947397ce14138213ce7d32b49bf4bb0d279e54b1e85bce3a9d7d7c" } }, "raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-metal.aarch64.raw.gz", - "sha256": "fb20e05a215f1fa9add9919cda0fba8a4d647f0ebc69c5e40ce335436d61f8e1", - "uncompressed-sha256": "912df18dde7ac4eeb0139590d2a53641cf6125c0b0c3aaea72b7293cad5885bf" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-metal.aarch64.raw.gz", + "sha256": "a04816c73b53be631b5beedb426354ab089f20da9054de6a2ed010403d8b4af8", + "uncompressed-sha256": "4be08d490830b8013e098f6c133f8be1f59141b542f6019d9b4d9fd1d8675cd4" } } } }, "openstack": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-openstack.aarch64.qcow2.gz", - "sha256": "347bfe571309da5c84dd8b30295b749eee0b43cf80fb8b0b183bf27245f4bf33", - "uncompressed-sha256": "0cc2033963e95431c094d8ce7781ee29829e9c7653732b6ce666bc4adbd4fe9a" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-openstack.aarch64.qcow2.gz", + "sha256": "b94b1b38adae8062729bf449e97260405dc47c24de3df153d3f8502656156cd6", + "uncompressed-sha256": "4418de993863592b26c87af4afc18925d7e97ee539b599833cdc71a3152d9e16" } } } }, "qemu": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/aarch64/scos-10.0.20250628-0-qemu.aarch64.qcow2.gz", - "sha256": "aa390d1ed8465a57123ed88dec926e2bea82d04b977e89706220c818347efdde", - "uncompressed-sha256": "5d037dce1eda695a790ca26c2d0098490d055a610fcf91755a9b2077d724846b" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/aarch64/scos-10.0.20251103-0-qemu.aarch64.qcow2.gz", + "sha256": "c3b8d6eb9d37a3b43d20d9780ca2ad71f6ed70295f999a026b1c54bddddcf45d", + "uncompressed-sha256": "547f3903a395acee23598800cf5d9d80ec419d1fbfd1745d79b7be287ea0f20b" } } } @@ -110,101 +110,101 @@ "aws": { "regions": { "us-east-1": { - "release": "10.0.20250628-0", - "image": "ami-0f7700ca9ec4e4540" + "release": "10.0.20251103-0", + "image": "ami-099531c13c6543387" }, "us-gov-west-1": { - "release": "10.0.20250628-0", - "image": "ami-0c21b73794d12b78e" + "release": "10.0.20251103-0", + "image": "ami-03aa988a01c4974ce" } } }, "gcp": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "project": "rhcos-cloud", - "name": "scos-10-0-20250628-0-gcp-aarch64" + "name": "scos-10-0-20251103-0-gcp-aarch64" } }, "rhel-coreos-extensions": { "azure-disk": { - "release": "10.0.20250628-0", - "url": "https://rhcos.blob.core.windows.net/imagebucket/scos-10.0.20250628-0-azure.aarch64.vhd" + "release": "10.0.20251103-0", + "url": "https://rhcos.blob.core.windows.net/imagebucket/scos-10.0.20251103-0-azure.aarch64.vhd" } } }, "ppc64le": { "artifacts": { "metal": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "4k.raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-metal4k.ppc64le.raw.gz", - "sha256": "ae55711f1b92c1848ce01b165e9d7184eb41f044b295d43017fc674dafed83c0", - "uncompressed-sha256": "14227ebe54a09f4459f80f1a6e80def2bd17228050d93d1a2c6d9291fa5c5902" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-metal4k.ppc64le.raw.gz", + "sha256": "f8e170a6a77f6e4bf398828fe35033a3396e6a20c308d3dee4ef0ae5c4aa8415", + "uncompressed-sha256": "cf5f63fc1fd24a30575c1ae8e0d721f652ba87c524e0b0c0b73375e89f7a39e0" } }, "iso": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-live-iso.ppc64le.iso", - "sha256": "9af19f9efce73fa32a595aca31292a93adc9e2052de2bcfcba47d418efede751" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-live-iso.ppc64le.iso", + "sha256": "a78a56d1e13d661ca3facc7643a85fd240c65c75231e63705da71b963c36dba2" } }, "pxe": { "kernel": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-live-kernel.ppc64le", - "sha256": "773a639bc3dc67331fa84aebd7fb43e94c08e3e3a3a846122ca6f798dc227dd8" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-live-kernel.ppc64le", + "sha256": "273c802911c324e39c5b642b90144f7134d2ca87f58f0a44b2084ca67509d9d4" }, "initramfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-live-initramfs.ppc64le.img", - "sha256": "60ceb2f9d5d9dd10c7f432c840e2e0869cb2ac7151aca74e676a311992f7e0ae" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-live-initramfs.ppc64le.img", + "sha256": "c329726b85209e34f16cda1507bf12cb3289ddac4e02c05d3e348d006859f17c" }, "rootfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-live-rootfs.ppc64le.img", - "sha256": "72dbc49d751f370e56e896b18af3f2cab630c8d9b6938e9c03128aefdd7fdc4f" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-live-rootfs.ppc64le.img", + "sha256": "e35e4d81b25dd9e6c840371bba1a3fe04f9a0716d667468597bac0d9fd6856d0" } }, "raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-metal.ppc64le.raw.gz", - "sha256": "337986b07d75230d0da80b9345dc8180a892cd24f1f62ece8148bc3bec58b898", - "uncompressed-sha256": "0bceb20f0e3a75004fabf47d536fdc51d7e7d774a480db0b79bea42dc0919479" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-metal.ppc64le.raw.gz", + "sha256": "67d5819b0885f765ead89ad4a0c187294ff4876ae5d595d24a1f1f556f653b3a", + "uncompressed-sha256": "3b6594b6334051eb98b2e7af14b4982d6f0246f79f832064412554433377c76a" } } } }, "openstack": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-openstack.ppc64le.qcow2.gz", - "sha256": "0ec9ba640775c834f11b13bbf85352cbceed173bfea88e8b880c89e9624319c7", - "uncompressed-sha256": "dd5e49b3aad192ec1a7b3da1405f6ddd8ff9d790260cfea8b279b804fc9f33b2" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-openstack.ppc64le.qcow2.gz", + "sha256": "12780cb1a6c694e1b5bf9b347b76066f25d0f60b8d1df454a9ef15a7425f9b11", + "uncompressed-sha256": "8f72034e43d17ff62a71214e8050b95ed9ce4b18ce45bf5c62e9306b2dbc4653" } } } }, "powervs": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "ova.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-powervs.ppc64le.ova.gz", - "sha256": "5dd50774a55141e216b2a1c0bfab7baa6a57643f77b0435b5d31d00b928f0ee0", - "uncompressed-sha256": "26776d6348d51aaef8729ac4d12bc7c84584b379bbd496da6db2006925df3e3c" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-powervs.ppc64le.ova.gz", + "sha256": "79b68efd4f85b230c1ed9df779a61e1dd096651d6a1806cd8c2d9e05b09453bc", + "uncompressed-sha256": "8b613245130e14734b74483680518d98585d8ef55616ec59b9ca087cdf14844a" } } } }, "qemu": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/ppc64le/scos-10.0.20250628-0-qemu.ppc64le.qcow2.gz", - "sha256": "6bce07f52542bc4a447ed4e2f5b7aea220dc6d555ab6a27d6d172f8008b9bbb8", - "uncompressed-sha256": "46d8b5943f3b2988d06810071e348e62088f87fa9c4e0735ae8016dbf10c6e3d" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/ppc64le/scos-10.0.20251103-0-qemu.ppc64le.qcow2.gz", + "sha256": "a80d879bd6e839bc38acf4c32b67c3af91a3f103898e082065dac64d8006ad2b", + "uncompressed-sha256": "20853cf0015a78287371c0c2f5e592533e8d55cc8a108a08769a280b7f1ea0ee" } } } @@ -214,10 +214,10 @@ "powervs": { "regions": { "us-east": { - "release": "10.0.20250628-0", - "object": "scos-10-0-20250628-0-ppc64le-powervs.ova.gz", + "release": "10.0.20251103-0", + "object": "scos-10-0-20251103-0-ppc64le-powervs.ova.gz", "bucket": "rhcos-powervs-images-us-east", - "url": "https://s3.us-east.cloud-object-storage.appdomain.cloud/rhcos-powervs-images-us-east/scos-10-0-20250628-0-ppc64le-powervs.ova.gz" + "url": "https://s3.us-east.cloud-object-storage.appdomain.cloud/rhcos-powervs-images-us-east/scos-10-0-20251103-0-ppc64le-powervs.ova.gz" } } } @@ -226,99 +226,99 @@ "s390x": { "artifacts": { "ibmcloud": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-ibmcloud.s390x.qcow2.gz", - "sha256": "f38c9b1d33b7ba87a377e39c3e90c97d3bda03ac9aebdf13a4735f5fc1f80d0b", - "uncompressed-sha256": "5bd39b75f42c62c66fbb83f2a825953db820fbc2f9cef65a87cfcb25b764777b" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-ibmcloud.s390x.qcow2.gz", + "sha256": "61687a75d893c78ebf2efa33da104d998b3561c95696a565358d6f565b276364", + "uncompressed-sha256": "99719275ff5ef24c475776d4c85ef1a2ab0f866e5bbb74c7f2c3d376a037d4f2" } } } }, "kubevirt": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "ociarchive": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-kubevirt.s390x.ociarchive", - "sha256": "1317ed228d42068f1d3d447b22d0d1b9e3185eb1571b45bc132ca1c256861823" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-kubevirt.s390x.ociarchive", + "sha256": "5ee1009becfab9927588df2c1ccdcab98f2d7ce90365a67374754e6956d3f5b6" } } } }, "metal": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "4k.raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-metal4k.s390x.raw.gz", - "sha256": "da1d8ca569921d20d9b14ae0bfdc03de033366b29d86f8d2114081921369dacd", - "uncompressed-sha256": "c349893341132dc218b49107f66d4263492da8468114d5c2c9c7d23cbf544502" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-metal4k.s390x.raw.gz", + "sha256": "586026abc33d5ab30832e2ab60237fc57c9413d686667c3a588333eba3349f88", + "uncompressed-sha256": "d8c6357832668be87a0758d3a1a399e5ce8d386346156ac912dfc96e9f1445f7" } }, "iso": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-live-iso.s390x.iso", - "sha256": "22f54cf9a9163b42c5aed36e54e7f6519c2886306d9567c32b726433565c038d" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-live-iso.s390x.iso", + "sha256": "02d9b4243de353492b56efca2d2c7c526fe4307ba0003dcdc1c388cae3a98b55" } }, "pxe": { "kernel": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-live-kernel.s390x", - "sha256": "d681ffab2e292bdde7264c8f48f03aa39968d3c6c79c4b22c218a52fbca7a43c" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-live-kernel.s390x", + "sha256": "b0c3c5e09bf72b06ccee31289a5eac759783547247e79970fde3d99fe30ea9e6" }, "initramfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-live-initramfs.s390x.img", - "sha256": "9e67a8200c58f6a35beff136dc04ee2f13a6fe946a6b1b0761960fc04444fd82" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-live-initramfs.s390x.img", + "sha256": "32516105f4702781c13d246366f61501f472f46e15e855f48b0f91f067b6defb" }, "rootfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-live-rootfs.s390x.img", - "sha256": "af62a1c657e4c63e2dcf382a2323fbbed6841a97d03cb15927ffee27e44ce4fa" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-live-rootfs.s390x.img", + "sha256": "804ac21528e0b5fe56f763af57312adbb67af78247177acca14e2a154fa9abc5" } }, "raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-metal.s390x.raw.gz", - "sha256": "438ff536d2944b27afc466d3394d2fd29dd362dcaaf86b9d17c61584d58c4c2b", - "uncompressed-sha256": "1f40df41c2105f252a3b99f98f540585a28e5d1c8f7382c2d826f6037915c718" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-metal.s390x.raw.gz", + "sha256": "9a7d44564c1f13604ebb673f8fe595a19f68af17e075b57a13fbf215f7c03766", + "uncompressed-sha256": "6305a77ef23cf245a59fcfad5e84a78825b65dbe33717b491a79bebdbf3c2e9d" } } } }, "openstack": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-openstack.s390x.qcow2.gz", - "sha256": "abe864207ff8e174a9b55ecd205a6aed713ca890634d6fb466af30841277fe1d", - "uncompressed-sha256": "aa0039645e9cbe015bdf7899764d255c9a79572972192ff4c358cca8c9a74dd0" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-openstack.s390x.qcow2.gz", + "sha256": "0f362c70e8bc86d930c5d5d6104d59833be47ce3c65a10e8ab551de649a1dc78", + "uncompressed-sha256": "a005f22a1f9de085221e6dd3f63b7b9f0139839a463adf38df4d456295a5fef3" } } } }, "qemu": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-qemu.s390x.qcow2.gz", - "sha256": "fa784cbf8177088e2ca254ca551df4d2e44caef494a2a4b7b93f471825aa16eb", - "uncompressed-sha256": "5595aca1eb03d0650392b2112b4f4e9728082c6f74726faf351f8dea06fc4aa5" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-qemu.s390x.qcow2.gz", + "sha256": "7b4038bddede8ae8802692e0d09f1025b7676bc3f293d02536cf031ef581af58", + "uncompressed-sha256": "9020c0a196d0a99e222a16c04eb2bd31ae173063e931567b67a0eeaffbade22d" } } } }, "qemu-secex": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/s390x/scos-10.0.20250628-0-qemu-secex.s390x.qcow2.gz", - "sha256": "5471e757fee453029968582afa080bd12bb1d15e62c2b884c69a7f10259a9d2a", - "uncompressed-sha256": "ce9513df5d55fba76479a8eedc6f9d68d0319a6fd76edc164dac4f4b6f9a37d2" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/s390x/scos-10.0.20251103-0-qemu-secex.s390x.qcow2.gz", + "sha256": "7a9d13a249a731bbdd5f06f7a731218417b9d0f14fdc91fc8b22566f742dbb04", + "uncompressed-sha256": "9bf6b77954164a562d038ef9b12a6fb2f0132c0ad881fa2fe280839530ee1c07" } } } @@ -326,165 +326,165 @@ }, "images": { "kubevirt": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev:c10s-coreos-kubevirt", - "digest-ref": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:68b9a1acdbf4aa533a9c4e1a8540bc30bf8912b0c7d71d0f181b26a64813bd1b" + "digest-ref": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:3f4c1599e5b51469658e4716997a532d52776aaadb1a3c25a9754b73dd4b0133" } } }, "x86_64": { "artifacts": { "aws": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "vmdk.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-aws.x86_64.vmdk.gz", - "sha256": "0fffb969553ed0ff6810bcd9e737698acda2b962b655eb6fe02e427a3d277744", - "uncompressed-sha256": "50da02544ec648cd6ae1ee7f937f6a10d21c12e4fe603ad4c951dd6b36d93b4b" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-aws.x86_64.vmdk.gz", + "sha256": "86e82dffa4ada5c6cfaa2e84dfad27ab8384228693bcce0d6f9ef556e1d2ef1e", + "uncompressed-sha256": "92dad605545fb120c5c4ae1717b88ad81921185996957bc7a52bac9e00af4c92" } } } }, "azure": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "vhd.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-azure.x86_64.vhd.gz", - "sha256": "469bd89119c20053a53fb71e4dba4d3088573c749aa2335856cbe65fbaaff196", - "uncompressed-sha256": "71b00a9a789dc1ca17819a5cd690c025f1c64e5580930b74a6cde891d3db4ae7" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-azure.x86_64.vhd.gz", + "sha256": "8de591c6914b0aa12615169a60879d387807003c45dc82234057d42fd0513161", + "uncompressed-sha256": "d93db396d4ada35d64a3201a1393ddb663c966df82e15e78841eadd9cda7001b" } } } }, "azurestack": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "vhd.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-azurestack.x86_64.vhd.gz", - "sha256": "492cdc731dbb57e74d8a69ec03a2a29b57a8fb2b3e13fb9e1181230f2d83e7eb", - "uncompressed-sha256": "4118403eba0b9c02434b3b9c250bcc9165a9c982ca4e4b89a5a1418346d1cf5f" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-azurestack.x86_64.vhd.gz", + "sha256": "6da4e206bee82473e784abb6247b6faae0017586d726f1e13eaf943f578fb06f", + "uncompressed-sha256": "8544540ebee3c2b48da6b50be63696823ebdf317e5e8ba5da4c7a825cad81077" } } } }, "gcp": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "tar.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-gcp.x86_64.tar.gz", - "sha256": "f68928965abaf2f6a7057595b8d7f61ac76b4f56ffe9741aa819a025450ca085" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-gcp.x86_64.tar.gz", + "sha256": "72bf40f3f3daa3a18962621507d063d608de533fa390e910eb4f34ed1f7b17df" } } } }, "ibmcloud": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-ibmcloud.x86_64.qcow2.gz", - "sha256": "1941f5f5705c9128c716a49a09871872fb5429d694fb1be9fdd6554a2ebe929e", - "uncompressed-sha256": "d38d1483e84944811af8053c9ec189a3114c94c934c1eabae799107dd2e459c6" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-ibmcloud.x86_64.qcow2.gz", + "sha256": "97fc9330c12990629d621bb6be6851a2c73013b19185957374eae0090886970f", + "uncompressed-sha256": "5d08bef4e626d2e44da925437775fa33959f15bc24b821cf55b0d85260955e79" } } } }, "kubevirt": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "ociarchive": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-kubevirt.x86_64.ociarchive", - "sha256": "f472065a86e57ccdf422bd976d22897fa8fd67ddd9a771080bcb9c25356f8e62" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-kubevirt.x86_64.ociarchive", + "sha256": "ab6d9273593f4fa0a4d0d6f5aec968daa7ad64b35c499b23d63a7a813aa9208c" } } } }, "metal": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "4k.raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-metal4k.x86_64.raw.gz", - "sha256": "5ff78f70b74121fd43f3712fd513260dca01ed65b91b3abcb9cba1d76115fca1", - "uncompressed-sha256": "a7e0b3d85b4b348b91deaf585c7fe45c3a32a9cb5be052b1176000e06b9f5a64" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-metal4k.x86_64.raw.gz", + "sha256": "38dca6b2f6dcf92d851e1d0dd230e4a88f10df901aaabd69cfe96a19a9596795", + "uncompressed-sha256": "744d515f6cfba72537689fa236921e21ad84c445b1c7dc86d4ef609d54f17173" } }, "iso": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-live-iso.x86_64.iso", - "sha256": "ec8cd7952a88ea72455bf0c464e44518c2005c69d4b5380c88af0d7488a9c8a1" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-live-iso.x86_64.iso", + "sha256": "aff9c4a263d51356584d8334a20f13e24d04803e4eb9b49c2b499e0ad908e94a" } }, "pxe": { "kernel": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-live-kernel.x86_64", - "sha256": "447910c2e93c6b7e886d19972a1cf17c1c2abc45511b44f5ce4b033f4365bff4" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-live-kernel.x86_64", + "sha256": "8e179034e341e611bb806f63749053f1956d4afcf57c38f9ef336a3419376921" }, "initramfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-live-initramfs.x86_64.img", - "sha256": "4e5b0ae7cc59ee162b6bb849241f184b8cc7c50c0a557bde9fc82cf21fe834b0" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-live-initramfs.x86_64.img", + "sha256": "e3e7db3e3c866bb42a21e9e55f1d240a29aa63413fcfd8ce62c63eba74f156f8" }, "rootfs": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-live-rootfs.x86_64.img", - "sha256": "540a81b0ca714e52e4b3d23454a3db0c4e0e02943cd7608b660acbc65b557613" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-live-rootfs.x86_64.img", + "sha256": "839292fe670cfadfb07a46caa0905138d48ead3938176fed91303e54855573be" } }, "raw.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-metal.x86_64.raw.gz", - "sha256": "d6ac91a4aa1f54e0eaf7290a1e260ecd6b52e114e67478adeb8823fbef789725", - "uncompressed-sha256": "ddc7798d6342c1685e53592b32321182a6d3c86179342ff738e1b7e1b431332b" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-metal.x86_64.raw.gz", + "sha256": "4e21aecb724a84a8e4d89035874be920c9f7bc03cdb67a476bf899e55a416391", + "uncompressed-sha256": "c0c6601f24cdd7a671fcc94da6658f4c8a26ae33d2bc74bfbe08ccbe7de54e3d" } } } }, "nutanix": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-nutanix.x86_64.qcow2", - "sha256": "b0fdd379477cbb00ae300cae03159db71aa0cbf91f1748fa9478d8f58d4e49a6" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-nutanix.x86_64.qcow2", + "sha256": "4cdceb06c368586141baa4e2861d02f73ae45b6b759cd56b1567f3fbea6e74f6" } } } }, "openstack": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-openstack.x86_64.qcow2.gz", - "sha256": "fa8dfc8b05d439f018460b37dffcbc60467a2ef9f314ea9622d3244165c86dcd", - "uncompressed-sha256": "f456c960bce9e2ccbd4b62293e364da45d3b61d2fe8ff6e15c2eab677889f51c" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-openstack.x86_64.qcow2.gz", + "sha256": "6576a72257a0ac11fb30e3d2924f3df9406c4274ac4fa24195a0bbf1c3bc8ca7", + "uncompressed-sha256": "7816ac1fa3af8b8f474cc6afc8063c150800a018b10541113b6e2618027e5a64" } } } }, "qemu": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "qcow2.gz": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-qemu.x86_64.qcow2.gz", - "sha256": "5183854e0496825c129ca07c4134ea2c51d8cff80906e76fb00af8a6d0d71ebc", - "uncompressed-sha256": "e990c2f2e2d42a84d70664be3815eb4db6a0b561a93e2cc11b8dd29871c49270" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-qemu.x86_64.qcow2.gz", + "sha256": "5b8f269822647f1471c4ae6aab445a1a4e3bce1522fcb566a507f4881c437a0a", + "uncompressed-sha256": "70609c79412a7853f0634f34afdd0e0a2492d4e188d45b78d4c9ead41ff571c8" } } } }, "vmware": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "formats": { "ova": { "disk": { - "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20250628-0/x86_64/scos-10.0.20250628-0-vmware.x86_64.ova", - "sha256": "19e1ad87955dda5006abf198c455f336960c16bb2211b0de2b59e0603b9b6026" + "location": "https://rhcos.mirror.openshift.com/art/storage/prod/streams/c10s/builds/10.0.20251103-0/x86_64/scos-10.0.20251103-0-vmware.x86_64.ova", + "sha256": "5f392aa4bdd672e56758a1831626d746ce626b3f1bc9d9bd93c7a9d08859410e" } } } @@ -494,32 +494,32 @@ "aws": { "regions": { "us-east-1": { - "release": "10.0.20250628-0", - "image": "ami-03a3e8d3d248db380" + "release": "10.0.20251103-0", + "image": "ami-06c6005cd77ed72cf" }, "us-gov-west-1": { - "release": "10.0.20250628-0", - "image": "ami-0e65c92bead463f2c" + "release": "10.0.20251103-0", + "image": "ami-0e16430ad2c120640" } } }, "gcp": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "project": "rhcos-cloud", - "name": "scos-10-0-20250628-0-gcp-x86-64" + "name": "scos-10-0-20251103-0-gcp-x86-64" }, "kubevirt": { - "release": "10.0.20250628-0", + "release": "10.0.20251103-0", "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev:c10s-coreos-kubevirt", - "digest-ref": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:25d662177778948ec2df9dc281a7358a11ac340f9a7866e58097b6a960e18699" + "digest-ref": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:b0c7e4c1a8f6282f26ad8632af788c9bfd36e94b4c9ca46dd5f3524b78cd6076" } }, "rhel-coreos-extensions": { "azure-disk": { - "release": "10.0.20250628-0", - "url": "https://rhcos.blob.core.windows.net/imagebucket/scos-10.0.20250628-0-azure.x86_64.vhd" + "release": "10.0.20251103-0", + "url": "https://rhcos.blob.core.windows.net/imagebucket/scos-10.0.20251103-0-azure.x86_64.vhd" } } } } -} +} \ No newline at end of file