From 6f52311f70e88de40c3275c6956f26ee724b2020 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 18:12:56 -0500 Subject: [PATCH 001/697] ci: Bump to latest buildah The platform-engineering include is using a truly ancient buildah image. Stop including that and bump to the latest. Signed-off-by: Colin Walters --- .gitlab-ci.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08c0ffe..cb0af33 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,24 @@ --- -include: - - remote: https://gitlab.com/platform-engineering-org/gitlab-ci/-/raw/main/templates/build-image.gitlab-ci.yml +stages: + - build + +variables: + IMAGE: ${CI_REGISTRY}/${CI_PROJECT_PATH}:${CI_COMMIT_SHA} + CONTAINERFILE: Containerfile + CONTEXT: . + EXTRA_ARGS: "" + +.build-image: + stage: build + image: quay.io/buildah/stable:v1.38.0 + needs: [] + script: buildah bud -f ${CONTAINERFILE} --no-cache -t ${IMAGE} ${EXTRA_ARGS} ${CONTEXT} + rules: + - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push" + when: never + - if: $CI_PIPELINE_SOURCE == "merge_request_event" + - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS + when: never build-image: extends: .build-image From d1a21ed1593efa8f4896ebaecfb56c669b857d04 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 20 Feb 2025 16:57:08 -0500 Subject: [PATCH 002/697] tier-0: Rename to minimal The "tiers" nomenclature ended up being unhelpful since we introduced "tier-x" which is between tier-0 and tier-1. We also never exposed the tier naming outside of our source code. In preparation for doing so, rename to tier-0 to "minimal" which is a bit more descriptive. Renaming the other images will follow. Signed-off-by: Colin Walters --- .gitlab-ci.yml | 2 +- README.md | 11 +++++------ fedora-tier-0.yaml => fedora-minimal.yaml | 4 ++-- {tier-0 => minimal}/basic-fixes.yaml | 0 {tier-0 => minimal}/bootc.yaml | 0 {tier-0 => minimal}/bootupd.yaml | 0 {tier-0 => minimal}/finalize.d/01-var.sh | 0 {tier-0 => minimal}/group | 0 {tier-0 => minimal}/grub2-removals.yaml | 0 {tier-0 => minimal}/initramfs.yaml | 0 {tier-0 => minimal}/kernel-install.yaml | 0 {tier-0 => minimal}/kernel.yaml | 0 {tier-0 => minimal}/manifest.yaml | 2 +- {tier-0 => minimal}/ostree.yaml | 0 {tier-0 => minimal}/passwd | 0 {tier-0 => minimal}/postprocess-conf.yaml | 2 +- {tier-0 => minimal}/tmpfiles.yaml | 0 tier-x/manifest.yaml | 2 +- 18 files changed, 11 insertions(+), 12 deletions(-) rename fedora-tier-0.yaml => fedora-minimal.yaml (67%) rename {tier-0 => minimal}/basic-fixes.yaml (100%) rename {tier-0 => minimal}/bootc.yaml (100%) rename {tier-0 => minimal}/bootupd.yaml (100%) rename {tier-0 => minimal}/finalize.d/01-var.sh (100%) rename {tier-0 => minimal}/group (100%) rename {tier-0 => minimal}/grub2-removals.yaml (100%) rename {tier-0 => minimal}/initramfs.yaml (100%) rename {tier-0 => minimal}/kernel-install.yaml (100%) rename {tier-0 => minimal}/kernel.yaml (100%) rename {tier-0 => minimal}/manifest.yaml (93%) rename {tier-0 => minimal}/ostree.yaml (100%) rename {tier-0 => minimal}/passwd (100%) rename {tier-0 => minimal}/postprocess-conf.yaml (91%) rename {tier-0 => minimal}/tmpfiles.yaml (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb0af33..4315f08 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ build-image: extends: .build-image parallel: matrix: - - TIER: [tier-0, tier-1, tier-x] + - TIER: [minimal, tier-1, tier-x] variables: EXTRA_ARGS: "--security-opt=label=disable --cap-add=all --build-arg MANIFEST=fedora-$TIER.yaml" rules: diff --git a/README.md b/README.md index c4ddc9f..4d82095 100644 --- a/README.md +++ b/README.md @@ -60,19 +60,18 @@ to support smaller custom images. For more on this, see - **tier-1**: This image is the default, what is published as https://quay.io/repository/fedora/fedora-bootc -- **tier-0**: This content set is more of a convenient centralization point for CI - and curation around a package set that we can all agree is the rough minimum - necessary for a usable system. It's not meant to be used as is, but layered - upon. +- **minimal**: This content set is more of a convenient centralization point for CI + and curation around a package set that is intended as a starting point fror + a container base image. - **tier-x**: This content set is the shared base used by all image-based Fedora variants (IoT, Atomic Desktops, and CoreOS). Changes to this tier may be done without accounting for external users. To build this, pass `--build-arg=MANIFEST=fedora-tier-x.yaml` to the build command above. -**tier-1** inherits from **tier-x** and **tier-x** in turn inherit from **tier-0**. +**tier-1** inherits from **tier-x** and **tier-x** in turn inherit from **minimal**. -All non-trivial changes to **tier-0** and **tier-x** should be ACKed by at least +All non-trivial changes to **minimal** and **tier-x** should be ACKed by at least one stakeholder of each Fedora variant WGs. ## More information diff --git a/fedora-tier-0.yaml b/fedora-minimal.yaml similarity index 67% rename from fedora-tier-0.yaml rename to fedora-minimal.yaml index 6cef2a1..77cd0e2 100644 --- a/fedora-tier-0.yaml +++ b/fedora-minimal.yaml @@ -4,5 +4,5 @@ metadata: include: - fedora-generic.yaml - - tier-0/manifest.yaml - - tier-0/kernel.yaml + - minimal/manifest.yaml + - minimal/kernel.yaml diff --git a/tier-0/basic-fixes.yaml b/minimal/basic-fixes.yaml similarity index 100% rename from tier-0/basic-fixes.yaml rename to minimal/basic-fixes.yaml diff --git a/tier-0/bootc.yaml b/minimal/bootc.yaml similarity index 100% rename from tier-0/bootc.yaml rename to minimal/bootc.yaml diff --git a/tier-0/bootupd.yaml b/minimal/bootupd.yaml similarity index 100% rename from tier-0/bootupd.yaml rename to minimal/bootupd.yaml diff --git a/tier-0/finalize.d/01-var.sh b/minimal/finalize.d/01-var.sh similarity index 100% rename from tier-0/finalize.d/01-var.sh rename to minimal/finalize.d/01-var.sh diff --git a/tier-0/group b/minimal/group similarity index 100% rename from tier-0/group rename to minimal/group diff --git a/tier-0/grub2-removals.yaml b/minimal/grub2-removals.yaml similarity index 100% rename from tier-0/grub2-removals.yaml rename to minimal/grub2-removals.yaml diff --git a/tier-0/initramfs.yaml b/minimal/initramfs.yaml similarity index 100% rename from tier-0/initramfs.yaml rename to minimal/initramfs.yaml diff --git a/tier-0/kernel-install.yaml b/minimal/kernel-install.yaml similarity index 100% rename from tier-0/kernel-install.yaml rename to minimal/kernel-install.yaml diff --git a/tier-0/kernel.yaml b/minimal/kernel.yaml similarity index 100% rename from tier-0/kernel.yaml rename to minimal/kernel.yaml diff --git a/tier-0/manifest.yaml b/minimal/manifest.yaml similarity index 93% rename from tier-0/manifest.yaml rename to minimal/manifest.yaml index 5fd83e4..603c5fe 100644 --- a/tier-0/manifest.yaml +++ b/minimal/manifest.yaml @@ -31,7 +31,7 @@ packages: # in dnf5. In CentOS/RHEL, this pulls in dnf(4). We can simplify this back to # just `dnf` once the `dnf` package is retired from Fedora. - /usr/bin/dnf - # Even in tier-0, we have this. If you don't want SELinux today, you'll need + # Even in minimal, we have this. If you don't want SELinux today, you'll need # to build a custom image. - selinux-policy-targeted # And we want container-selinux because trying to layer it on later currently causes issues. diff --git a/tier-0/ostree.yaml b/minimal/ostree.yaml similarity index 100% rename from tier-0/ostree.yaml rename to minimal/ostree.yaml diff --git a/tier-0/passwd b/minimal/passwd similarity index 100% rename from tier-0/passwd rename to minimal/passwd diff --git a/tier-0/postprocess-conf.yaml b/minimal/postprocess-conf.yaml similarity index 91% rename from tier-0/postprocess-conf.yaml rename to minimal/postprocess-conf.yaml index 7356093..31ef9af 100644 --- a/tier-0/postprocess-conf.yaml +++ b/minimal/postprocess-conf.yaml @@ -7,7 +7,7 @@ opt-usrlocal: "root" machineid-compat: true # Note that the default for c9s+ is sqlite; we can't rely on rpm being -# in the target (it isn't in tier-0!) so turn this to host here. This +# in the target (it isn't in minimal!) so turn this to host here. This # does break the "hermetic build" aspect a bit. Maybe eventually # what we should do is special case this and actually install RPM temporarily # and then remove it... diff --git a/tier-0/tmpfiles.yaml b/minimal/tmpfiles.yaml similarity index 100% rename from tier-0/tmpfiles.yaml rename to minimal/tmpfiles.yaml diff --git a/tier-x/manifest.yaml b/tier-x/manifest.yaml index 2b2cf68..e5275d5 100644 --- a/tier-x/manifest.yaml +++ b/tier-x/manifest.yaml @@ -1,5 +1,5 @@ include: - - ../tier-0/manifest.yaml + - ../minimal/manifest.yaml packages: # Used by admins interactively From e77e3dd0aca1a9491bb8670e3b3dfe5ce6976343 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 13:16:43 -0500 Subject: [PATCH 003/697] minimal: Require kernel.yaml We have a legacy of trying to support using e.g. kernel-rt. But it adds complexity in the inheritance because minimal/manifest.yaml isn't standalone, it also needs a kernel. As part of custom base images I want to simplify this. In order to use kernel-rt, we'll just say that you build a minimal base, and then swap to kernel-rt as a secondary step for now. Signed-off-by: Colin Walters --- fedora-bootc.yaml | 1 - fedora-minimal.yaml | 1 - fedora-tier-x.yaml | 1 - minimal/manifest.yaml | 1 + tier-1/kernel.yaml | 1 - tier-x/kernel.yaml | 1 - 6 files changed, 1 insertion(+), 5 deletions(-) delete mode 120000 tier-1/kernel.yaml delete mode 120000 tier-x/kernel.yaml diff --git a/fedora-bootc.yaml b/fedora-bootc.yaml index 68dc692..11763a0 100644 --- a/fedora-bootc.yaml +++ b/fedora-bootc.yaml @@ -5,4 +5,3 @@ metadata: include: - fedora-generic.yaml - tier-1/manifest.yaml - - tier-1/kernel.yaml diff --git a/fedora-minimal.yaml b/fedora-minimal.yaml index 77cd0e2..76762f6 100644 --- a/fedora-minimal.yaml +++ b/fedora-minimal.yaml @@ -5,4 +5,3 @@ metadata: include: - fedora-generic.yaml - minimal/manifest.yaml - - minimal/kernel.yaml diff --git a/fedora-tier-x.yaml b/fedora-tier-x.yaml index 90a96fd..f80d107 100644 --- a/fedora-tier-x.yaml +++ b/fedora-tier-x.yaml @@ -5,4 +5,3 @@ metadata: include: - fedora-generic.yaml - tier-x/manifest.yaml - - tier-x/kernel.yaml diff --git a/minimal/manifest.yaml b/minimal/manifest.yaml index 603c5fe..5efd94c 100644 --- a/minimal/manifest.yaml +++ b/minimal/manifest.yaml @@ -15,6 +15,7 @@ remove-from-packages: - [systemd-udev, /usr/lib/systemd/system-generators/systemd-gpt-auto-generator] include: + - kernel.yaml - postprocess-conf.yaml - tmpfiles.yaml - bootc.yaml diff --git a/tier-1/kernel.yaml b/tier-1/kernel.yaml deleted file mode 120000 index d6f64cc..0000000 --- a/tier-1/kernel.yaml +++ /dev/null @@ -1 +0,0 @@ -../tier-0/kernel.yaml \ No newline at end of file diff --git a/tier-x/kernel.yaml b/tier-x/kernel.yaml deleted file mode 120000 index d6f64cc..0000000 --- a/tier-x/kernel.yaml +++ /dev/null @@ -1 +0,0 @@ -../tier-0/kernel.yaml \ No newline at end of file From 3950d19bdc75427fc45abffbe78aaee8cb77883d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 14:45:13 -0500 Subject: [PATCH 004/697] manifests: Add descriptions This is generally useful for the same reason dpkg/rpm packages have descriptions. But it's also specifically preparation for the base image builder having a list operation to show available configurations. Signed-off-by: Colin Walters --- minimal/manifest.yaml | 3 +++ tier-1/manifest.yaml | 6 ++++++ tier-x/manifest.yaml | 8 ++++++++ 3 files changed, 17 insertions(+) diff --git a/minimal/manifest.yaml b/minimal/manifest.yaml index 5efd94c..2c4a62e 100644 --- a/minimal/manifest.yaml +++ b/minimal/manifest.yaml @@ -1,3 +1,6 @@ +metadata: + summary: Effectively just bootc, systemd, kernel, and dnf as a starting point. + edition: "2024" # Be minimal diff --git a/tier-1/manifest.yaml b/tier-1/manifest.yaml index c84117b..499d298 100644 --- a/tier-1/manifest.yaml +++ b/tier-1/manifest.yaml @@ -1,3 +1,9 @@ +metadata: + summary: | + A relatively full, but still generic base image. Roughly + similar to a headless server installation. Automatic updates + are on by default. + # Flip this back on, we're going to be a larger system recommends: true diff --git a/tier-x/manifest.yaml b/tier-x/manifest.yaml index e5275d5..0b5d0d3 100644 --- a/tier-x/manifest.yaml +++ b/tier-x/manifest.yaml @@ -1,3 +1,11 @@ +metadata: + summary: | + A relatively full, but still generic base image. Roughly + similar to a smaller Fedora CoreOS. Includes NetworkManager, + openssh, various CLI tools, etc. + + Automatic updates are not on by default. + include: - ../minimal/manifest.yaml From 11a09f4c76accf1d13ccab5e65ef4a4d95c5ee44 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 14:55:37 -0500 Subject: [PATCH 005/697] Rename "tier-1" to "standard" Followup to the rename of "tier-0" to "minimal". The tiers nomenclature didn't end up working out. Signed-off-by: Colin Walters --- .gitlab-ci.yml | 2 +- README.md | 6 +++--- fedora-bootc.yaml | 2 +- fedora-tier-1.yaml => fedora-standard.yaml | 0 {tier-1 => standard}/autoupdates.yaml | 0 {tier-1 => standard}/bootc-generic-growpart | 0 {tier-1 => standard}/bootc-generic-growpart.service | 0 {tier-1 => standard}/coreos-user-experience.yaml | 0 {tier-1 => standard}/generic-growfs.yaml | 0 {tier-1 => standard}/initramfs-full.yaml | 4 ++-- {tier-1 => standard}/manifest.yaml | 0 {tier-1 => standard}/networking-tools.yaml | 0 {tier-1 => standard}/persistent-journal.yaml | 0 {tier-1 => standard}/system-configuration.yaml | 0 14 files changed, 7 insertions(+), 7 deletions(-) rename fedora-tier-1.yaml => fedora-standard.yaml (100%) rename {tier-1 => standard}/autoupdates.yaml (100%) rename {tier-1 => standard}/bootc-generic-growpart (100%) rename {tier-1 => standard}/bootc-generic-growpart.service (100%) rename {tier-1 => standard}/coreos-user-experience.yaml (100%) rename {tier-1 => standard}/generic-growfs.yaml (100%) rename {tier-1 => standard}/initramfs-full.yaml (54%) rename {tier-1 => standard}/manifest.yaml (100%) rename {tier-1 => standard}/networking-tools.yaml (100%) rename {tier-1 => standard}/persistent-journal.yaml (100%) rename {tier-1 => standard}/system-configuration.yaml (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4315f08..86919ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ build-image: extends: .build-image parallel: matrix: - - TIER: [minimal, tier-1, tier-x] + - TIER: [minimal, standard, tier-x] variables: EXTRA_ARGS: "--security-opt=label=disable --cap-add=all --build-arg MANIFEST=fedora-$TIER.yaml" rules: diff --git a/README.md b/README.md index 4d82095..4c2d4bd 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ podman build --security-opt=label=disable --cap-add=all \ --device /dev/fuse -t localhost/fedora-bootc . ``` -See the `Containerfile` for more details. This builds the default `tier-1` image. +See the `Containerfile` for more details. This builds the default `standard` image. ## Fedora versions @@ -58,7 +58,7 @@ It is planned to rework and improve this in the future, especially to support smaller custom images. For more on this, see [this tracker issue](https://gitlab.com/fedora/bootc/tracker/-/issues/32). -- **tier-1**: This image is the default, what is published as +- **standard**: This image is the default, what is published as https://quay.io/repository/fedora/fedora-bootc - **minimal**: This content set is more of a convenient centralization point for CI and curation around a package set that is intended as a starting point fror @@ -69,7 +69,7 @@ to support smaller custom images. For more on this, see To build this, pass `--build-arg=MANIFEST=fedora-tier-x.yaml` to the build command above. -**tier-1** inherits from **tier-x** and **tier-x** in turn inherit from **minimal**. +**standard** inherits from **tier-x** and **tier-x** in turn inherit from **minimal**. All non-trivial changes to **minimal** and **tier-x** should be ACKed by at least one stakeholder of each Fedora variant WGs. diff --git a/fedora-bootc.yaml b/fedora-bootc.yaml index 11763a0..e8251b2 100644 --- a/fedora-bootc.yaml +++ b/fedora-bootc.yaml @@ -4,4 +4,4 @@ metadata: include: - fedora-generic.yaml - - tier-1/manifest.yaml + - standard/manifest.yaml diff --git a/fedora-tier-1.yaml b/fedora-standard.yaml similarity index 100% rename from fedora-tier-1.yaml rename to fedora-standard.yaml diff --git a/tier-1/autoupdates.yaml b/standard/autoupdates.yaml similarity index 100% rename from tier-1/autoupdates.yaml rename to standard/autoupdates.yaml diff --git a/tier-1/bootc-generic-growpart b/standard/bootc-generic-growpart similarity index 100% rename from tier-1/bootc-generic-growpart rename to standard/bootc-generic-growpart diff --git a/tier-1/bootc-generic-growpart.service b/standard/bootc-generic-growpart.service similarity index 100% rename from tier-1/bootc-generic-growpart.service rename to standard/bootc-generic-growpart.service diff --git a/tier-1/coreos-user-experience.yaml b/standard/coreos-user-experience.yaml similarity index 100% rename from tier-1/coreos-user-experience.yaml rename to standard/coreos-user-experience.yaml diff --git a/tier-1/generic-growfs.yaml b/standard/generic-growfs.yaml similarity index 100% rename from tier-1/generic-growfs.yaml rename to standard/generic-growfs.yaml diff --git a/tier-1/initramfs-full.yaml b/standard/initramfs-full.yaml similarity index 54% rename from tier-1/initramfs-full.yaml rename to standard/initramfs-full.yaml index 2c55a83..b84a498 100644 --- a/tier-1/initramfs-full.yaml +++ b/standard/initramfs-full.yaml @@ -1,8 +1,8 @@ -# Configuration for the "tier-1" initramfs +# Configuration for the initramfs postprocess: - | #!/usr/bin/env bash mkdir -p /usr/lib/dracut/dracut.conf.d - cat > /usr/lib/dracut/dracut.conf.d/30-bootc-tier-1.conf << 'EOF' + cat > /usr/lib/dracut/dracut.conf.d/30-bootc-standard.conf << 'EOF' add_dracutmodules+=" lvm crypt fips " EOF diff --git a/tier-1/manifest.yaml b/standard/manifest.yaml similarity index 100% rename from tier-1/manifest.yaml rename to standard/manifest.yaml diff --git a/tier-1/networking-tools.yaml b/standard/networking-tools.yaml similarity index 100% rename from tier-1/networking-tools.yaml rename to standard/networking-tools.yaml diff --git a/tier-1/persistent-journal.yaml b/standard/persistent-journal.yaml similarity index 100% rename from tier-1/persistent-journal.yaml rename to standard/persistent-journal.yaml diff --git a/tier-1/system-configuration.yaml b/standard/system-configuration.yaml similarity index 100% rename from tier-1/system-configuration.yaml rename to standard/system-configuration.yaml From 62b9f3e766e03745d048d5ef0cd8d1710e3e23cd Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 15:29:17 -0500 Subject: [PATCH 006/697] manifests: Drop metadata from fedora manifests Let's inherit from the generic descriptions. Signed-off-by: Colin Walters --- fedora-bootc.yaml | 4 ---- fedora-minimal.yaml | 4 ---- fedora-tier-x.yaml | 4 ---- 3 files changed, 12 deletions(-) diff --git a/fedora-bootc.yaml b/fedora-bootc.yaml index e8251b2..a505c04 100644 --- a/fedora-bootc.yaml +++ b/fedora-bootc.yaml @@ -1,7 +1,3 @@ -metadata: - name: fedora-boot-tier1 - summary: Fedora Bootable Tier 1 - include: - fedora-generic.yaml - standard/manifest.yaml diff --git a/fedora-minimal.yaml b/fedora-minimal.yaml index 76762f6..10d409e 100644 --- a/fedora-minimal.yaml +++ b/fedora-minimal.yaml @@ -1,7 +1,3 @@ -metadata: - name: fedora-boot-tier0 - summary: Fedora Bootable Tier 0 - include: - fedora-generic.yaml - minimal/manifest.yaml diff --git a/fedora-tier-x.yaml b/fedora-tier-x.yaml index f80d107..91af79c 100644 --- a/fedora-tier-x.yaml +++ b/fedora-tier-x.yaml @@ -1,7 +1,3 @@ -metadata: - name: fedora-boot-tier-x - summary: Fedora Bootable Tier X - include: - fedora-generic.yaml - tier-x/manifest.yaml From 8fbe774210b5caffde6d55a41952672f5fa64df4 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 15:43:39 -0500 Subject: [PATCH 007/697] Swap symlink state for fedora-bootc -> fedora-standard Followup to the naming standardization. Now `fedora-bootc.yaml` is effectively a deprecated alias only used by the legacy pungi configs. Signed-off-by: Colin Walters --- fedora-bootc.yaml | 4 +--- fedora-standard.yaml | 4 +++- 2 files changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 120000 fedora-bootc.yaml mode change 120000 => 100644 fedora-standard.yaml diff --git a/fedora-bootc.yaml b/fedora-bootc.yaml deleted file mode 100644 index a505c04..0000000 --- a/fedora-bootc.yaml +++ /dev/null @@ -1,3 +0,0 @@ -include: - - fedora-generic.yaml - - standard/manifest.yaml diff --git a/fedora-bootc.yaml b/fedora-bootc.yaml new file mode 120000 index 0000000..e9e57b1 --- /dev/null +++ b/fedora-bootc.yaml @@ -0,0 +1 @@ +fedora-standard.yaml \ No newline at end of file diff --git a/fedora-standard.yaml b/fedora-standard.yaml deleted file mode 120000 index d9c3fd0..0000000 --- a/fedora-standard.yaml +++ /dev/null @@ -1 +0,0 @@ -fedora-bootc.yaml \ No newline at end of file diff --git a/fedora-standard.yaml b/fedora-standard.yaml new file mode 100644 index 0000000..a505c04 --- /dev/null +++ b/fedora-standard.yaml @@ -0,0 +1,3 @@ +include: + - fedora-generic.yaml + - standard/manifest.yaml From 745c9eb6d3407cb1c79e6a7c68f4b2fa52a24ce1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 16:02:22 -0500 Subject: [PATCH 008/697] Move fedora-generic to fedora-includes I want to make it clearer which manifests are actually "toplevels" versus which are just for inclusion. Move fedora-generic to its own subdirectory for this reason. Signed-off-by: Colin Walters --- fedora-generic.yaml => fedora-includes/generic.yaml | 0 fedora-minimal.yaml | 2 +- fedora-standard.yaml | 2 +- fedora-tier-x.yaml | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename fedora-generic.yaml => fedora-includes/generic.yaml (100%) diff --git a/fedora-generic.yaml b/fedora-includes/generic.yaml similarity index 100% rename from fedora-generic.yaml rename to fedora-includes/generic.yaml diff --git a/fedora-minimal.yaml b/fedora-minimal.yaml index 10d409e..a6b3b23 100644 --- a/fedora-minimal.yaml +++ b/fedora-minimal.yaml @@ -1,3 +1,3 @@ include: - - fedora-generic.yaml + - fedora-includes/generic.yaml - minimal/manifest.yaml diff --git a/fedora-standard.yaml b/fedora-standard.yaml index a505c04..73eeb5d 100644 --- a/fedora-standard.yaml +++ b/fedora-standard.yaml @@ -1,3 +1,3 @@ include: - - fedora-generic.yaml + - fedora-includes/generic.yaml - standard/manifest.yaml diff --git a/fedora-tier-x.yaml b/fedora-tier-x.yaml index 91af79c..eb2a3e9 100644 --- a/fedora-tier-x.yaml +++ b/fedora-tier-x.yaml @@ -1,3 +1,3 @@ include: - - fedora-generic.yaml + - fedora-includes/generic.yaml - tier-x/manifest.yaml From c89b6f429813932faaa44004ce2ffc5b77fdc181 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 21 Feb 2025 13:10:22 -0500 Subject: [PATCH 009/697] Introduce bootc-base-imagectl - Embed the manifests into the container image - Add bootc-base-imagectl which is a tightly controlled frontend to execute on those manifests. For now, we don't attempt to rework how we build the standard image to actually look like `dnf install`, but we show that it can work. Signed-off-by: Colin Walters --- .gitlab-ci.yml | 2 +- Containerfile | 15 ++++-- bootc-base-imagectl | 87 ++++++++++++++++++++++++++++++ bootc-base-imagectl.md | 99 +++++++++++++++++++++++++++++++++++ install-manifests | 18 +++++++ tests/Containerfile.test-c10s | 31 +++++++++++ 6 files changed, 248 insertions(+), 4 deletions(-) create mode 100755 bootc-base-imagectl create mode 100644 bootc-base-imagectl.md create mode 100755 install-manifests create mode 100644 tests/Containerfile.test-c10s diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 86919ef..5c82de0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,7 +26,7 @@ build-image: matrix: - TIER: [minimal, standard, tier-x] variables: - EXTRA_ARGS: "--security-opt=label=disable --cap-add=all --build-arg MANIFEST=fedora-$TIER.yaml" + EXTRA_ARGS: "--security-opt=label=disable --cap-add=all --build-arg MANIFEST=fedora-$TIER" rules: - if: $CI_PROJECT_NAMESPACE != "fedora/bootc" when: never diff --git a/Containerfile b/Containerfile index d01755b..4f08153 100644 --- a/Containerfile +++ b/Containerfile @@ -11,7 +11,7 @@ FROM quay.io/fedora/fedora:rawhide as repos # BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. FROM quay.io/fedora/fedora:rawhide as builder RUN dnf -y install rpm-ostree selinux-policy-targeted -ARG MANIFEST=fedora-bootc.yaml +ARG MANIFEST=fedora-standard # The input git repository has .repo files committed to git rpm-ostree has historically # emphasized that. But here, we are fetching the repos from the container base image. # So copy the source, and delete the hardcoded ones in git, and use the container base @@ -20,8 +20,17 @@ COPY . /src WORKDIR /src RUN rm -vf /src/*.repo RUN --mount=type=cache,target=/workdir \ - --mount=type=bind,rw,from=repos,src=/,dst=/repos \ - rpm-ostree experimental compose rootfs --cachedir=/workdir --source-root-rw=/repos ${MANIFEST} /target-rootfs + --mount=type=bind,rw,from=repos,src=/,dst=/repos </dev/null +# Run the build script in the same way we expect custom images to do, and also +# "re-inject" the manifests into the target, so secondary container builds can use it. +/usr/libexec/bootc-base-imagectl build-rootfs --reinject --manifest=${MANIFEST} /repos /target-rootfs +EORUN # This pulls in the rootfs generated in the previous step FROM scratch diff --git a/bootc-base-imagectl b/bootc-base-imagectl new file mode 100755 index 0000000..05b880b --- /dev/null +++ b/bootc-base-imagectl @@ -0,0 +1,87 @@ +#!/usr/bin/env python3 + +import os +import os.path as path +import subprocess +import shutil +import json +import argparse +import sys + +MANIFESTDIR = 'usr/share/doc/bootc-base-imagectl/manifests' + +def run_build_rootfs(args): + """ + Regenerates a base image using a build configuration. + """ + target = args.target + if os.path.isdir(args.manifest): + manifest_path = os.path.join(args.manifest, 'manifest.yaml') + else: + manifest_path = args.manifest + '.yaml' + try: + # Perform the build + subprocess.run([ + 'rpm-ostree', + 'experimental', + 'compose', + 'rootfs', + f'--source-root-rw={args.source_root}', + f'/{MANIFESTDIR}/{manifest_path}', + target, + ], check=True) + # And run the bootc linter for good measure + subprocess.run([ + 'bootc', + 'container', + 'lint', + f'--rootfs={target}', + ], check=True) + except subprocess.CalledProcessError as e: + print(f"Error executing command: {e}") + sys.exit(1) + + # Copy our own build configuration into the target if configured; + # this is used for the first stage build. But by default *secondary* + # builds don't get this. + if args.reinject: + for d in [MANIFESTDIR]: + dst = path.join(target, d) + print(f"Copying /{d} to {dst}") + shutil.copytree('/' + d, dst) + for f in ['usr/libexec/bootc-base-imagectl']: + dst = path.join(target, f) + print(f"Copying /{f} to {dst}") + shutil.copy('/' + f, dst) + +def run_list(args): + d = '/' + MANIFESTDIR + for ent in sorted(os.listdir(d)): + name, ext = os.path.splitext(ent) + if ext != '.yaml': + continue + fullpath = os.path.join(d, ent) + if os.path.islink(fullpath): + continue + o = subprocess.check_output(['rpm-ostree', 'compose', 'tree', '--print-only', fullpath]) + manifest = json.loads(o) + description = manifest['metadata']['summary'] + print(f"{name}: {description}") + print("---") + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Operate on the build configuration for this container") + subparsers = parser.add_subparsers(help='Subcommands', required=True) + + build_rootfs = subparsers.add_parser('build-rootfs', help='Generate a container root filesystem') + build_rootfs.add_argument("--reinject", help="Also reinject the build configurations into the target", action='store_true') + build_rootfs.add_argument("--manifest", help="Use the specified manifest", action='store', default='default') + build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration.") + build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") + build_rootfs.set_defaults(func=run_build_rootfs) + + cmd_list = subparsers.add_parser('list', help='List available manifests') + cmd_list.set_defaults(func=run_list) + + args = parser.parse_args() + args.func(args) \ No newline at end of file diff --git a/bootc-base-imagectl.md b/bootc-base-imagectl.md new file mode 100644 index 0000000..9a90b34 --- /dev/null +++ b/bootc-base-imagectl.md @@ -0,0 +1,99 @@ +# bootc-base-imagectl + +A core premise of the bootc model is that rich +control over Linux system customization can be accomplished +with a "default" container build: + +``` +FROM +RUN ... +``` + +As of recently, it is possible to e.g. swap the kernel +and other fundamental components as part of default derivation. + +However, some use cases want even more control - for example, +as an organization deploying a bootc system, I may want to ensure +the base image version carries a set of packages at +exactly specific versions (perhaps defined by a lockfile, +or an rpm-md repository). There are many tools which +manage snapshots of yum (rpm-md) repositories. + +There are currently issues where it won't quite work to e.g. +`dnf -y upgrade selinux-policy-targeted`. + +The `/usr/libexec/bootc-base-imagectl` tool which is +included in the base image is designed to enable building +a root filesystem in ostree-container format from a set +of RPMs controlled by the user. + +## Understanding the base image content + +Most, but not all content from the base image comes from RPMs. +There is some additional non-RPM content, as well as postprocessing +that operates on the filesystem root. At the current time the +implementation of the base image build uses `rpm-ostree`, +but this is considered an implementation detail subject to change. + +## Using bootc-base-imagectl build-rootfs + +The core operation is `bootc-base-imagectl build-rootfs`. + +This command takes just two arguments: + +- A "source root" which should have an `/etc/yum.repos.d` + that defines the input RPM content. This source root is also used + to control things like the `$releasever`. +- A path to the target root filesystem which will be generated as + a directory. The target should not already exist (but its parent must exist). + +### Other options + +`bootc-base-imagectl list` will enumerate available configurations that +can be selected by passing `--manifest` to `build-rootfs`. + +### Implementation + +The current implementation uses `rpm-ostree` on a manifest (treefile) +embedded in the container image itself. These manifests are not intended +to be editable directly. + +To emphasize: the implementation of this command (especially the configuration +files that it reads) are subject to change. + +### Cross builds and the builder image + +The build tooling is designed to support "cross builds"; the +repository root could e.g. be CentOS Stream 10, while the +builder root is Fedora or RHEL, etc. + +In other words, one given base image can be used as a "builder" to produce another +using different RPMs. + +### Example: Generate a new image using CentOS Stream 10 content from RHEL + +FROM quay.io/centos/centos:stream10 as repos + +FROM registry.redhat.io/rhel10/rhel-bootc:10 as builder +RUN --mount=type=bind,from=repos,src=/,dst=/repos,rw /usr/libexec/bootc-base-imagectl build-rootfs --manifest=minimal /repos /target-rootfs + +# This container image uses the "artifact pattern"; it has some +# basic configuration we expect to apply to multiple container images. +FROM quay.io/exampleos/baseconfig@sha256:.... as baseconfig + +FROM scratch +COPY --from=builder /target-rootfs/ / +# Now we make other arbitrary changes. Copy our systemd units and +# other tweaks from the baseconfig container image. +COPY --from=baseconfig /usr/ /usr/ +RUN < Date: Mon, 24 Feb 2025 13:53:01 -0500 Subject: [PATCH 010/697] ci: Drop tier-x build, do build test case As part of all of this we're de-emphasizing "tier-x" and focusing on making it ergonomic to either build up from minimal, or down+up from standard. Second, also add a CI test for our derived image. Signed-off-by: Colin Walters --- .gitlab-ci.yml | 32 +++++++------------ ...le.test-c10s => Containerfile.test-derive} | 7 ++-- 2 files changed, 14 insertions(+), 25 deletions(-) rename tests/{Containerfile.test-c10s => Containerfile.test-derive} (85%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c82de0..d25599d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,31 +3,21 @@ stages: - build variables: - IMAGE: ${CI_REGISTRY}/${CI_PROJECT_PATH}:${CI_COMMIT_SHA} - CONTAINERFILE: Containerfile - CONTEXT: . - EXTRA_ARGS: "" + PRIV_ARGS: "--security-opt=label=disable --cap-add=all --device /dev/fuse" .build-image: stage: build image: quay.io/buildah/stable:v1.38.0 needs: [] - script: buildah bud -f ${CONTAINERFILE} --no-cache -t ${IMAGE} ${EXTRA_ARGS} ${CONTEXT} - rules: - - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push" - when: never - - if: $CI_PIPELINE_SOURCE == "merge_request_event" - - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS - when: never -build-image: +build-minimal: extends: .build-image - parallel: - matrix: - - TIER: [minimal, standard, tier-x] - variables: - EXTRA_ARGS: "--security-opt=label=disable --cap-add=all --build-arg MANIFEST=fedora-$TIER" - rules: - - if: $CI_PROJECT_NAMESPACE != "fedora/bootc" - when: never - - if: $CI_PIPELINE_SOURCE == "merge_request_event" + script: buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal ${PRIV_ARGS} --build-arg=manifest=fedora-minimal . + +standard-build-and-test: + extends: .build-image + script: | + set -xeuo pipefail + buildah build --no-cache -t localhost/fedora-bootc ${PRIV_ARGS} . + cd tests + buildah build -f Containerfile.test-derive --no-cache -t localhost/fedora-bootc-derived ${PRIV_ARGS} . diff --git a/tests/Containerfile.test-c10s b/tests/Containerfile.test-derive similarity index 85% rename from tests/Containerfile.test-c10s rename to tests/Containerfile.test-derive index 2b6b4e6..52cd0a7 100644 --- a/tests/Containerfile.test-c10s +++ b/tests/Containerfile.test-derive @@ -1,7 +1,7 @@ # This test case exercises using the fedora-bootc image as a builder # to generate a minimal target image derived from CentOS Stream 10 content, # and then further extends it in a secondary phase. -FROM quay.io/centos/centos:stream10 as repos +FROM quay.io/fedora/fedora-bootc:rawhide as repos # This is intentionally a locally built image FROM localhost/fedora-bootc as builder @@ -12,16 +12,15 @@ FROM scratch COPY --from=builder /target-rootfs/ / RUN < Date: Tue, 25 Feb 2025 16:22:57 -0500 Subject: [PATCH 011/697] imagectl: Default source-root to / While "cross builds" and using a separate repos container can feel very clean (instead of mutating the builder container) it's actually much closer to our default intention to support building a new version of the base image from the image itself. So make the source root optional (i.e. it defaults to `/`). This will improve the default UX, but also more specifically will fix the issue that cachi2 breaks the separate source root flow. Signed-off-by: Colin Walters --- bootc-base-imagectl | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 05b880b..446f169 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -19,17 +19,17 @@ def run_build_rootfs(args): manifest_path = os.path.join(args.manifest, 'manifest.yaml') else: manifest_path = args.manifest + '.yaml' + rpmostree_argv = ['rpm-ostree', 'experimental', 'compose', 'rootfs'] try: + # Assume we can mutate alternative roots + if args.source_root != '/': + rpmostree_argv.append(f'--source-root-rw={args.source_root}') + else: + # But we shouldn't need to mutate the default root + rpmostree_argv.append('--source-root=/') + rpmostree_argv.extend([f'/{MANIFESTDIR}/{manifest_path}', target]) # Perform the build - subprocess.run([ - 'rpm-ostree', - 'experimental', - 'compose', - 'rootfs', - f'--source-root-rw={args.source_root}', - f'/{MANIFESTDIR}/{manifest_path}', - target, - ], check=True) + subprocess.run(rpmostree_argv, check=True) # And run the bootc linter for good measure subprocess.run([ 'bootc', @@ -76,7 +76,7 @@ if __name__ == "__main__": build_rootfs = subparsers.add_parser('build-rootfs', help='Generate a container root filesystem') build_rootfs.add_argument("--reinject", help="Also reinject the build configurations into the target", action='store_true') build_rootfs.add_argument("--manifest", help="Use the specified manifest", action='store', default='default') - build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration.") + build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From 3f39d107e1be1ad287f5ffff53348ab2b3c5be9b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 27 Feb 2025 19:52:27 -0500 Subject: [PATCH 012/697] imagectl: Copy symlinks as symlinks for manifests This fixes using `defaults.yaml` as a link, which we don't want to list with the `list` verb. --- bootc-base-imagectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 446f169..871d5ea 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -48,7 +48,7 @@ def run_build_rootfs(args): for d in [MANIFESTDIR]: dst = path.join(target, d) print(f"Copying /{d} to {dst}") - shutil.copytree('/' + d, dst) + shutil.copytree('/' + d, dst, symlinks=True) for f in ['usr/libexec/bootc-base-imagectl']: dst = path.join(target, f) print(f"Copying /{f} to {dst}") From e89565789cfa678504a785d1c2f389d4cd0c0cba Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 28 Feb 2025 09:13:06 -0500 Subject: [PATCH 013/697] Use rpmdb-normalize, add rootfs tests I just saw the sqlite-shm corruption in https://gitlab.com/redhat/centos-stream/containers/bootc/-/merge_requests/437#note_2372766792 so let's just go ahead and turn on rpmdb_normalize which also aids the reproducibility of the rpmdb. While we're here let's also add a long overdue "unit test" for the rootfs. This operates as a container build that mounts the container-under-test as part of a multi-stage build. Signed-off-by: Colin Walters --- .gitlab-ci.yml | 6 +++++- minimal/postprocess-conf.yaml | 9 +++------ tests/rootfs/Dockerfile | 6 ++++++ tests/rootfs/README.md | 4 ++++ tests/rootfs/cases/rpmdb | 7 +++++++ tests/rootfs/run | 13 +++++++++++++ 6 files changed, 38 insertions(+), 7 deletions(-) create mode 100644 tests/rootfs/Dockerfile create mode 100644 tests/rootfs/README.md create mode 100755 tests/rootfs/cases/rpmdb create mode 100755 tests/rootfs/run diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d25599d..59bd995 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,12 +12,16 @@ variables: build-minimal: extends: .build-image - script: buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal ${PRIV_ARGS} --build-arg=manifest=fedora-minimal . + script: | + set -xeuo pipefail + buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal ${PRIV_ARGS} --build-arg=manifest=fedora-minimal . + cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc:minimal standard-build-and-test: extends: .build-image script: | set -xeuo pipefail buildah build --no-cache -t localhost/fedora-bootc ${PRIV_ARGS} . + (cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc) cd tests buildah build -f Containerfile.test-derive --no-cache -t localhost/fedora-bootc-derived ${PRIV_ARGS} . diff --git a/minimal/postprocess-conf.yaml b/minimal/postprocess-conf.yaml index 31ef9af..f8d41d7 100644 --- a/minimal/postprocess-conf.yaml +++ b/minimal/postprocess-conf.yaml @@ -6,12 +6,9 @@ opt-usrlocal: "root" # https://github.com/CentOS/centos-bootc/issues/167 machineid-compat: true -# Note that the default for c9s+ is sqlite; we can't rely on rpm being -# in the target (it isn't in minimal!) so turn this to host here. This -# does break the "hermetic build" aspect a bit. Maybe eventually -# what we should do is special case this and actually install RPM temporarily -# and then remove it... -rpmdb: host +rpmdb: target +# We never want rpmdb.sqlite-shm as it's unreproducible +rpmdb-normalize: true ignore-removed-users: - root diff --git a/tests/rootfs/Dockerfile b/tests/rootfs/Dockerfile new file mode 100644 index 0000000..10e6e0c --- /dev/null +++ b/tests/rootfs/Dockerfile @@ -0,0 +1,6 @@ +# This should always be replaced with podman build --from. +FROM localhost/image-to-test as rootfs + +FROM quay.io/centos/centos:stream10 +COPY . /src +RUN --mount=type=bind,from=rootfs,target=/target-rootfs /src/run /target-rootfs diff --git a/tests/rootfs/README.md b/tests/rootfs/README.md new file mode 100644 index 0000000..a8f3381 --- /dev/null +++ b/tests/rootfs/README.md @@ -0,0 +1,4 @@ +# rootfs tests + +This is a set of scripts that sanity check the target +rootfs in a read-only fashion. diff --git a/tests/rootfs/cases/rpmdb b/tests/rootfs/cases/rpmdb new file mode 100755 index 0000000..34f9c1d --- /dev/null +++ b/tests/rootfs/cases/rpmdb @@ -0,0 +1,7 @@ +#!/bin/bash +set -xeuo pipefail +for d in usr/share/rpm usr/lib/sysimage/rpm; do + if test -d "$d"; then + test '!' -f "$d/rpmdb.sqlite-shm" + fi +done diff --git a/tests/rootfs/run b/tests/rootfs/run new file mode 100755 index 0000000..a372861 --- /dev/null +++ b/tests/rootfs/run @@ -0,0 +1,13 @@ +#!/bin/bash +set -euo pipefail +srcdir=$(cd $(dirname $0) && pwd) +rootfs=$1 +shift +cd $rootfs +for case in ${srcdir}/cases/*; do + if test -x "$case"; then + echo "Running $case" + $case + echo "ok $case" + fi +done From ed3ca02edf32925575685c999674f3e7553b0287 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 28 Feb 2025 14:59:34 -0500 Subject: [PATCH 014/697] minimal: Exclude iptables-legacy, don't include iptables-nft Motivated by trimming the package set of minimal to be smaller to match its name. But more generally, I think the solution most of the time we hit a "multiple things have a provides" isn't to hardcode what we want, but to exclude what we don't want. Ideally of course...there'd be something like `ProvidesDisfavored: iptables` that `iptables-legacy` could use. Signed-off-by: Colin Walters --- minimal/bootc.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/minimal/bootc.yaml b/minimal/bootc.yaml index 5cecefb..d98497d 100644 --- a/minimal/bootc.yaml +++ b/minimal/bootc.yaml @@ -2,15 +2,15 @@ packages: - systemd - bootc - # bootc pulls in podman, which pulls in containers-common, which wants - # `iptables`. Currently that pulls in iptables-legacy. Let's explicitly name - # iptables-nft instead to satisfy it. - - iptables-nft # Required by bootc install, sgdisk has been replaced by Rust crate # in bootc https://github.com/containers/bootc/pull/775 - xfsprogs e2fsprogs dosfstools exclude-packages: + # bootc pulls in podman, which pulls in containers-common, which wants + # `iptables`. That may pull in iptables-legacy which we don't want; + # we want iptables-nft to win the Provides by default + - iptables-legacy # Exclude kernel-debug-core to make sure that it doesn't somehow get # chosen as the package to satisfy the `kernel-core` dependency from # the kernel package. From 55a819160406ade9be43897010379ff089d11e29 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 25 Feb 2025 12:55:56 -0500 Subject: [PATCH 015/697] imagectl: Add rechunk verb This fronts the functionality currently implemented in rpm-ostree, for the same reason as we have `build-rootfs`; the functionality may move elsewhere in the future. Signed-off-by: Colin Walters --- bootc-base-imagectl | 24 +++++++++++++++++++++ bootc-base-imagectl.md | 48 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 871d5ea..51884f2 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -54,6 +54,24 @@ def run_build_rootfs(args): print(f"Copying /{f} to {dst}") shutil.copy('/' + f, dst) +def run_rechunk(args): + argv = [ + 'rpm-ostree', + 'experimental', + 'compose', + 'build-chunked-oci'] + if args.max_layers is not None: + argv.append(f"--max-layers={args.max_layers}") + argv.extend(['--bootc', + '--format-version=1', + f'--from={args.from_image}', + f'--output=containers-storage:{args.to_image}']) + try: + subprocess.run(argv, check=True) + except subprocess.CalledProcessError as e: + print(f"Error executing command: {e}") + sys.exit(1) + def run_list(args): d = '/' + MANIFESTDIR for ent in sorted(os.listdir(d)): @@ -80,6 +98,12 @@ if __name__ == "__main__": build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) + cmd_rechunk = subparsers.add_parser('rechunk', help="Generate a new container image with split, reproducible, chunked layers") + cmd_rechunk.add_argument("--max-layers", help="Configure the number of output layers") + cmd_rechunk.add_argument("from_image", help="Operate on this image in the container storage") + cmd_rechunk.add_argument("to_image", help="Output a new image to the container storage") + cmd_rechunk.set_defaults(func=run_rechunk) + cmd_list = subparsers.add_parser('list', help='List available manifests') cmd_list.set_defaults(func=run_list) diff --git a/bootc-base-imagectl.md b/bootc-base-imagectl.md index 9a90b34..b3cba04 100644 --- a/bootc-base-imagectl.md +++ b/bootc-base-imagectl.md @@ -47,6 +47,54 @@ This command takes just two arguments: - A path to the target root filesystem which will be generated as a directory. The target should not already exist (but its parent must exist). +## Using bootc-base-imagectl rechunk + +This operation is strongly related to `build-rootfs` but is also orthogonal; +it can be used on a "regular" container build as well. + +This command assumes it will be run as a container image, and defaults +to wanting write access to the container storage. + +``` +podman run --rm --privileged -v /var/lib/containers:/var/lib/containers quay.io/fedora/fedora-bootc:rawhide \ + bootc-base-imagectl rechunk quay.io/exampleos/exampleos:build quay.io/exampleos/exampleos:latest +``` + +### Rationale + +When performing a complex container derivation, there are several issues: + +#### Replaced duplicate content + +When e.g. upgrading or replacing the kernel or other large packages +as part of a container build (without squashing all layers) then +the old replaced content will still be present. + +#### Removed content still present + +Similarly, `RUN dnf -y remove` etc. will still retain that removed +content in prior layers. + +#### Timestamp drift + +By default, many tools will use the current timestamp when writing +files. `rpm` will do this (unless `SOURCE_DATE_EPOCH` is set), and +other tools like `cp` and `curl` will as well. + +This means that every build of the image will produce a new +tar stream (with new timestamps) - that will get pushed to a registry +and downloaded by clients, even if the content didn't actually change. + +### What rechunk does: split reproducible chunked images + +The `bootc-base-imagectl rechunk` command fixes all of these issues +by taking an input container, operates on its final merged filesystem +tree (hence removed/overridden files are handled), and then splits it up +(currently based on the RPM database) into separate layers (tarballs). + +Further, because bootc uses OSTree today, and OSTree canonializes all timestamps +to zero on the client side, this tool does that at build time. + ### Other options `bootc-base-imagectl list` will enumerate available configurations that From 5d4936fd43ed2a4fa22bbca5849e3581a2c049ee Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 3 Mar 2025 08:53:05 -0500 Subject: [PATCH 016/697] tests: Verify var/tmp Somehow this went missing in a local build. Signed-off-by: Colin Walters --- tests/rootfs/cases/var | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 tests/rootfs/cases/var diff --git a/tests/rootfs/cases/var b/tests/rootfs/cases/var new file mode 100755 index 0000000..7c87d32 --- /dev/null +++ b/tests/rootfs/cases/var @@ -0,0 +1,4 @@ +#!/bin/bash +set -xeuo pipefail +# Verify directories we expect to exist +test -d var/tmp From 82a4e874a4b0a09979b0966f5725bb5611ab5627 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 3 Mar 2025 09:22:33 -0500 Subject: [PATCH 017/697] finalize.d: Ensure var/tmp in container root There's a crazy history around this; what we really want is to have this reliably generated by tmpfiles.d, the handling for which I want to move to bootc. For now let's wedge this into finalize.d alongside the few others here. Signed-off-by: Colin Walters --- minimal/finalize.d/01-var.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/minimal/finalize.d/01-var.sh b/minimal/finalize.d/01-var.sh index e48c36a..35a8af1 100755 --- a/minimal/finalize.d/01-var.sh +++ b/minimal/finalize.d/01-var.sh @@ -4,3 +4,4 @@ set -xeuo pipefail ln -s ../run var/run # https://gitlab.com/fedora/bootc/tracker/-/issues/58 mkdir -p var/lib/rpm-state +test -d var/tmp || mkdir -m 1777 var/tmp From 1a5ba8905ae48e7336434d3a81fe68b90aa6a2ea Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 28 Feb 2025 16:04:04 -0500 Subject: [PATCH 018/697] container: Use copr rpm-ostree by default As we're now in a cycle of landing fixes there faster, then once we stabilize we can drop this. Signed-off-by: Colin Walters --- Containerfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 4f08153..3a99360 100644 --- a/Containerfile +++ b/Containerfile @@ -6,11 +6,19 @@ # to run the "rechunker" on the output of this build, see # https://coreos.github.io/rpm-ostree/experimental-build-chunked-oci/ +# Override this repos container to control the base image package versions. For +# example, podman build --from=quay.io/fedora/fedora:41 will get you a system +# that uses Fedora 41 packages. Or inject arbitrary yum repos (COPR, etc) here. FROM quay.io/fedora/fedora:rawhide as repos # BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. -FROM quay.io/fedora/fedora:rawhide as builder -RUN dnf -y install rpm-ostree selinux-policy-targeted +FROM quay.io/fedora/fedora:41 as builder +# However we also pull rpm-ostree from git main to get some fixes for now +RUN < Date: Tue, 4 Mar 2025 14:06:46 +0100 Subject: [PATCH 019/697] Add an alternative method to set the repos image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Make it possible to set the repos image with a build argument, e.g.: --build-arg=REPOS_IMAGE=quay.io/fedora/fedora:42 Currently it's only possible use the --from argument, e.g.: --from=quay.io/fedora/fedora:42 Signed-off-by: Miguel Martín --- Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 3a99360..9e789b3 100644 --- a/Containerfile +++ b/Containerfile @@ -3,13 +3,14 @@ # podman build --security-opt=label=disable --cap-add=all --device /dev/fuse <...> # NOTE: This container build will output a single giant layer. It is strongly recommended -# to run the "rechunker" on the output of this build, see +# to run the "rechunker" on the output of this build, see # https://coreos.github.io/rpm-ostree/experimental-build-chunked-oci/ # Override this repos container to control the base image package versions. For # example, podman build --from=quay.io/fedora/fedora:41 will get you a system # that uses Fedora 41 packages. Or inject arbitrary yum repos (COPR, etc) here. -FROM quay.io/fedora/fedora:rawhide as repos +ARG REPOS_IMAGE=quay.io/fedora/fedora:rawhide +FROM $REPOS_IMAGE as repos # BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. FROM quay.io/fedora/fedora:41 as builder From ccb2c22ecb1e8d43249a0e2ca739d91372ef6179 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 4 Mar 2025 17:21:30 -0500 Subject: [PATCH 020/697] imagectl: Update mode for / if needed This works around https://github.com/coreos/rpm-ostree/pull/5322 so we can ship the fix faster. Signed-off-by: Colin Walters --- bootc-base-imagectl | 6 ++++++ tests/rootfs/cases/root-mode | 4 ++++ 2 files changed, 10 insertions(+) create mode 100755 tests/rootfs/cases/root-mode diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 51884f2..80d5307 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -4,6 +4,7 @@ import os import os.path as path import subprocess import shutil +import stat import json import argparse import sys @@ -30,6 +31,11 @@ def run_build_rootfs(args): rpmostree_argv.extend([f'/{MANIFESTDIR}/{manifest_path}', target]) # Perform the build subprocess.run(rpmostree_argv, check=True) + # Work around https://github.com/coreos/rpm-ostree/pull/5322 + root_mode = os.lstat(target).st_mode + if (root_mode & stat.S_IXOTH) == 0: + print("Updating rootfs mode") + os.chmod(target, root_mode | (0o555)) # And run the bootc linter for good measure subprocess.run([ 'bootc', diff --git a/tests/rootfs/cases/root-mode b/tests/rootfs/cases/root-mode new file mode 100755 index 0000000..475f3ef --- /dev/null +++ b/tests/rootfs/cases/root-mode @@ -0,0 +1,4 @@ +#!/bin/bash +set -xeuo pipefail +# Verify we didn't lose the executable bit for others on / +test $(($(stat -c '0%a' .) % 2)) = 1 From c57120ac525fd76b0321e22fe5a04d0cbc5414b9 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 12 Mar 2025 09:26:08 -0400 Subject: [PATCH 021/697] build-sys: Make target dir for install-manifests configurable For the use case of updating Konflux lockfiles we want to be able to easily render the manifests to a tempdir without installing to `/`. Move the install of the build script to the main container build so `install-manifests` only touches manifests. Signed-off-by: Colin Walters --- Containerfile | 2 ++ install-manifests | 4 +--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 9e789b3..d8693b5 100644 --- a/Containerfile +++ b/Containerfile @@ -34,6 +34,8 @@ set -xeuo pipefail # Put our manifests into the builder image in the same location they'll be in the # final image. ./install-manifests +# And embed the rebuild script +install -m 0755 -t /usr/libexec ./bootc-base-imagectl # Verify that listing works /usr/libexec/bootc-base-imagectl list >/dev/null # Run the build script in the same way we expect custom images to do, and also diff --git a/install-manifests b/install-manifests index 8c00f99..1290411 100755 --- a/install-manifests +++ b/install-manifests @@ -2,7 +2,7 @@ set -xeuo pipefail # This script copies the manifests from the current directory # into their installed location. -manifestdir=/usr/share/doc/bootc-base-imagectl/manifests +manifestdir=${1:-/usr/share/doc/bootc-base-imagectl/manifests} mkdir -p "$manifestdir/" for image in minimal standard tier-x; do # Embed the generic defaults @@ -14,5 +14,3 @@ done ln -s fedora-standard.yaml $manifestdir/default.yaml # And install dependency manifests cp -a fedora-includes $manifestdir -# And embed the rebuild script -install -m 0755 -t /usr/libexec ./bootc-base-imagectl From 1bf50178bda6fda42d649f8e31093e16647a895a Mon Sep 17 00:00:00 2001 From: Joseph Marrero Corchado Date: Fri, 14 Mar 2025 12:29:27 -0400 Subject: [PATCH 022/697] minimal/kernel-install: set protect_running_kernel to False https://dnf.readthedocs.io/en/latest/conf_ref.html#protect-running-kernel-label uses uname to protect the running kernel, when both the container and the host shared the same kernel version this blocks removing the kernel or replacing it, since on ostree systems we only support one kernel this prevents us from installing kernel-rt for example. --- minimal/kernel-install.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/minimal/kernel-install.yaml b/minimal/kernel-install.yaml index a0e915f..1d75cd9 100644 --- a/minimal/kernel-install.yaml +++ b/minimal/kernel-install.yaml @@ -13,9 +13,13 @@ postprocess: # https://dnf.readthedocs.io/en/latest/conf_ref.html#main-options # Let's add the config to a distribution configuration file if dnf5 # is used, we append to /etc/dnf/dnf.conf if not. + # Also set protect_running_kernel=False, dnf/yum pre-dates Containers and + # uses uname to protect the running kernel even on Container builds. if [ -d "/usr/share/dnf5/libdnf.conf.d/" ]; then echo -e "[main]\ninstallonlypkgs=''" >> /usr/share/dnf5/libdnf.conf.d/20-ostree-installonlypkgs.conf + echo -e "[main]\nprotect_running_kernel=False" >> /usr/share/dnf5/libdnf.conf.d/20-ostree-protect_running_kernel.conf else echo "installonlypkgs=''" >> /etc/dnf/dnf.conf + echo "protect_running_kernel=False" >> /etc/dnf/dnf.conf fi From 383f528989ec1791762271ab62442d4d09385137 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 12 Mar 2025 09:04:46 -0400 Subject: [PATCH 023/697] Simplify versioning The versioning here was originally inherited from the Fedora CoreOS configuration. However...the version numbering was always overridden by coreos-assembler, so it wasn't actually used there! Conceptually there are two things here: - OS version - Arbitrary date stamp For the "OS version"...well, the closest thing we have actually to "version of set of RPMs" is a compose today, which is expressed in a distinct label already - at least for CentOS and RHEL. For Fedora of course post-branching there are no "composes" as such but just a set of floating RPMs post-release. We have the "arbitrary date stamp" in the container image build time already - and tooling like bootc and rpm-ostree show both the version and the build time. Let's significantly simplify our version numbers by just going to "OS version". This especially fixes the bug that we weren't setting `releasever` anymore which just broke the version anyways. Closes: https://gitlab.com/fedora/bootc/base-images/-/issues/40 Signed-off-by: Colin Walters --- Containerfile | 4 ++++ minimal/postprocess-conf.yaml | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 9e789b3..dc4f074 100644 --- a/Containerfile +++ b/Containerfile @@ -44,6 +44,10 @@ EORUN # This pulls in the rootfs generated in the previous step FROM scratch COPY --from=builder /target-rootfs/ / +# Note in practice this won't be right in a cross build, so we don't +# set it here. This placeholder is just to note that it *should* be set +# by the larger build system (e.g. Konflux). +LABEL org.opencontainers.image.version 43 LABEL containers.bootc 1 # This is an ad-hoc way for us to reference bootc-image-builder in # a way that in theory client tooling can inspect and find. Today diff --git a/minimal/postprocess-conf.yaml b/minimal/postprocess-conf.yaml index f8d41d7..6b54a77 100644 --- a/minimal/postprocess-conf.yaml +++ b/minimal/postprocess-conf.yaml @@ -25,6 +25,3 @@ check-passwd: check-groups: type: "file" filename: "group" - -automatic-version-prefix: "${releasever}." -mutate-os-release: "${releasever}" From 585071ec6ed032d586e8df932cb79ae3bdb70178 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 18 Mar 2025 09:33:12 -0400 Subject: [PATCH 024/697] =?UTF-8?q?Rename=20tier-x=20=E2=86=92=20minimal-p?= =?UTF-8?q?lus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When we renamed tier-0 → minimal and tier-1 → standard, the naming of tier-x became obsolete. Complete the nomenclature update. Closes: https://gitlab.com/fedora/bootc/base-images/-/issues/24 Signed-off-by: Colin Walters --- .gitlab-ci.yml | 8 ++++++++ README.md | 9 +++------ fedora-tier-x.yaml => fedora-minimal-plus.yaml | 2 +- install-manifests | 2 +- {tier-x => minimal-plus}/manifest.yaml | 7 ++----- standard/manifest.yaml | 2 +- 6 files changed, 16 insertions(+), 14 deletions(-) rename fedora-tier-x.yaml => fedora-minimal-plus.yaml (57%) rename {tier-x => minimal-plus}/manifest.yaml (85%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 59bd995..e201329 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,6 +17,14 @@ build-minimal: buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal ${PRIV_ARGS} --build-arg=manifest=fedora-minimal . cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc:minimal +build-minimal-plus: + extends: .build-image + script: | + set -xeuo pipefail + buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal-plus ${PRIV_ARGS} --build-arg=manifest=fedora-minimal-plus . + cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc:minimal-plus + + standard-build-and-test: extends: .build-image script: | diff --git a/README.md b/README.md index 4c2d4bd..02b1e68 100644 --- a/README.md +++ b/README.md @@ -63,15 +63,12 @@ to support smaller custom images. For more on this, see - **minimal**: This content set is more of a convenient centralization point for CI and curation around a package set that is intended as a starting point fror a container base image. -- **tier-x**: This content set is the shared base used by all image-based +- **minimal-plus**: This content set is intended to be the shared base used by all image-based Fedora variants (IoT, Atomic Desktops, and CoreOS). - Changes to this tier may be done without accounting for external users. - To build this, pass `--build-arg=MANIFEST=fedora-tier-x.yaml` to the build - command above. -**standard** inherits from **tier-x** and **tier-x** in turn inherit from **minimal**. +**standard** inherits from **minimal-plus** and **minimal-plus** in turn inherit from **minimal**. -All non-trivial changes to **minimal** and **tier-x** should be ACKed by at least +All non-trivial changes to **minimal** and **minimal-plus** should be ACKed by at least one stakeholder of each Fedora variant WGs. ## More information diff --git a/fedora-tier-x.yaml b/fedora-minimal-plus.yaml similarity index 57% rename from fedora-tier-x.yaml rename to fedora-minimal-plus.yaml index eb2a3e9..a987b38 100644 --- a/fedora-tier-x.yaml +++ b/fedora-minimal-plus.yaml @@ -1,3 +1,3 @@ include: - fedora-includes/generic.yaml - - tier-x/manifest.yaml + - minimal-plus/manifest.yaml diff --git a/install-manifests b/install-manifests index 1290411..867eb62 100755 --- a/install-manifests +++ b/install-manifests @@ -4,7 +4,7 @@ set -xeuo pipefail # into their installed location. manifestdir=${1:-/usr/share/doc/bootc-base-imagectl/manifests} mkdir -p "$manifestdir/" -for image in minimal standard tier-x; do +for image in minimal standard minimal-plus; do # Embed the generic defaults cp -a $image $manifestdir/ # And the Fedora-specific tweaks diff --git a/tier-x/manifest.yaml b/minimal-plus/manifest.yaml similarity index 85% rename from tier-x/manifest.yaml rename to minimal-plus/manifest.yaml index 0b5d0d3..c45d9b2 100644 --- a/tier-x/manifest.yaml +++ b/minimal-plus/manifest.yaml @@ -1,10 +1,7 @@ metadata: summary: | - A relatively full, but still generic base image. Roughly - similar to a smaller Fedora CoreOS. Includes NetworkManager, - openssh, various CLI tools, etc. - - Automatic updates are not on by default. + This content set is intended to be the shared base used by all image-based + Fedora variants (IoT, Atomic Desktops, and CoreOS). include: - ../minimal/manifest.yaml diff --git a/standard/manifest.yaml b/standard/manifest.yaml index 499d298..4810817 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -8,7 +8,7 @@ metadata: recommends: true include: - - ../tier-x/manifest.yaml + - ../minimal-plus/manifest.yaml - autoupdates.yaml - networking-tools.yaml - system-configuration.yaml From 78462e6c13c225b047bcabb6448f2b33e07b5bbd Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 19 Mar 2025 16:35:44 -0400 Subject: [PATCH 025/697] base-imagectl: Drop `experimental` from compose-rootfs It's stable in 2025.6 which is hopefully going to ship in Fedora 41 soon and is already in C10S and C9S. --- bootc-base-imagectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 80d5307..6f1e9da 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -20,7 +20,7 @@ def run_build_rootfs(args): manifest_path = os.path.join(args.manifest, 'manifest.yaml') else: manifest_path = args.manifest + '.yaml' - rpmostree_argv = ['rpm-ostree', 'experimental', 'compose', 'rootfs'] + rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] try: # Assume we can mutate alternative roots if args.source_root != '/': From 993845d2a25a963973e6bad74cd6bbf92051f8b1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 25 Mar 2025 17:26:18 -0400 Subject: [PATCH 026/697] Move the `tss` group to `/etc` so it can be mutated This works around two issues: - First, rpm switched to reading users/groups directly for its implementation of systemd-sysusers, which meant it no longer reads via nss, which breaks nss-altfiles. xref: https://github.com/rpm-software-management/rpm/pull/2503#issuecomment-1536435351 and below. - Second, even if that was fixed, `keylime` wants to add its user to the group, which can't be done when it's a system uid. Since nothing in the OS content is owned by this group, we can move underneath `/etc` by default. Signed-off-by: Colin Walters --- minimal/postprocess-conf.yaml | 5 +++++ tests/rootfs/cases/etc-group | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100755 tests/rootfs/cases/etc-group diff --git a/minimal/postprocess-conf.yaml b/minimal/postprocess-conf.yaml index 6b54a77..b1f6f95 100644 --- a/minimal/postprocess-conf.yaml +++ b/minimal/postprocess-conf.yaml @@ -14,9 +14,14 @@ ignore-removed-users: - root ignore-removed-groups: - root +# By default users and groups are injected to nss-altfiles +# which is immutable. This list moves a selected set +# to /etc/group instead, which is mutable per system +# and allows local users to become part of these groups. etc-group-members: - wheel - systemd-journal + - tss # https://issues.redhat.com/browse/BIFROST-618 - adm check-passwd: diff --git a/tests/rootfs/cases/etc-group b/tests/rootfs/cases/etc-group new file mode 100755 index 0000000..fceee84 --- /dev/null +++ b/tests/rootfs/cases/etc-group @@ -0,0 +1,6 @@ +#!/bin/bash +set -xeuo pipefail +# Verify group members +getent group tss >/dev/null +# This one needs to be in /etc +grep -q tss /etc/group From 3d8dd4e4ce75464e33f39fd384ecc8bd8bdd4324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 1 Apr 2025 10:29:54 +0200 Subject: [PATCH 027/697] Initial Konflux build of Fedora Rawhide standard base image --- ...ootc-rawhide-standard-on-pull-request.yaml | 53 +++++++++++++++++++ ...fedora-bootc-rawhide-standard-on-push.yaml | 48 +++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml create mode 100644 .tekton/fedora-bootc-rawhide-standard-on-push.yaml diff --git a/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml new file mode 100644 index 0000000..044203b --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml @@ -0,0 +1,53 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-standard-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:on-pr-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-rawhide-standard-on-push.yaml b/.tekton/fedora-bootc-rawhide-standard-on-push.yaml new file mode 100644 index 0000000..2a30040 --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-standard-on-push.yaml @@ -0,0 +1,48 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-standard-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - MANIFEST=fedora-standard + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From 4abbbdb4e1700b1c703e0fe454e910af8dc2638c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 1 Apr 2025 10:36:49 +0200 Subject: [PATCH 028/697] Initial Konflux build of Fedora Rawhide minimal base image --- ...bootc-rawhide-minimal-on-pull-request.yaml | 53 +++++++++++++++++++ .../fedora-bootc-rawhide-minimal-on-push.yaml | 48 +++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml create mode 100644 .tekton/fedora-bootc-rawhide-minimal-on-push.yaml diff --git a/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml new file mode 100644 index 0000000..5ff2f0f --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml @@ -0,0 +1,53 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-minimal-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:on-pr-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml new file mode 100644 index 0000000..a4ef672 --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml @@ -0,0 +1,48 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-minimal-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - MANIFEST=fedora-minimal + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From 0aaa20edd7d4d44848e2dd80cf6ed85993b98df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 1 Apr 2025 10:36:06 +0200 Subject: [PATCH 029/697] Initial Konflux build of Fedora Rawhide minimal-plus base image --- ...-rawhide-minimal-plus-on-pull-request.yaml | 53 +++++++++++++++++++ ...ra-bootc-rawhide-minimal-plus-on-push.yaml | 48 +++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml create mode 100644 .tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml new file mode 100644 index 0000000..9f45eef --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml @@ -0,0 +1,53 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-minimal-plus-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:on-pr-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml new file mode 100644 index 0000000..834a6c5 --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml @@ -0,0 +1,48 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-minimal-plus-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - MANIFEST=fedora-minimal-plus + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From 426b951aee1310f04a986dc3bf69e637dd20a1aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 3 Apr 2025 12:19:45 +0200 Subject: [PATCH 030/697] Fedora 42 minimal base image --- ...dora-bootc-42-minimal-on-pull-request.yaml | 53 +++++++++++++++++++ .tekton/fedora-bootc-42-minimal-on-push.yaml | 48 +++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .tekton/fedora-bootc-42-minimal-on-pull-request.yaml create mode 100644 .tekton/fedora-bootc-42-minimal-on-push.yaml diff --git a/.tekton/fedora-bootc-42-minimal-on-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-on-pull-request.yaml new file mode 100644 index 0000000..4a52302 --- /dev/null +++ b/.tekton/fedora-bootc-42-minimal-on-pull-request.yaml @@ -0,0 +1,53 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-on-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-minimal-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:42 + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:on-pr-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-42-minimal-on-push.yaml b/.tekton/fedora-bootc-42-minimal-on-push.yaml new file mode 100644 index 0000000..bb474b9 --- /dev/null +++ b/.tekton/fedora-bootc-42-minimal-on-push.yaml @@ -0,0 +1,48 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-minimal-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:42 + - MANIFEST=fedora-minimal + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From c8c36c781990ea551eed6d258196c6cba7ea1e35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 3 Apr 2025 12:19:54 +0200 Subject: [PATCH 031/697] Fedora 42 minimal-plus base image --- ...bootc-42-minimal-plus-on-pull-request.yaml | 53 +++++++++++++++++++ .../fedora-bootc-42-minimal-plus-on-push.yaml | 48 +++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml create mode 100644 .tekton/fedora-bootc-42-minimal-plus-on-push.yaml diff --git a/.tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml new file mode 100644 index 0000000..189d1e8 --- /dev/null +++ b/.tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml @@ -0,0 +1,53 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-minimal-plus-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:42 + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:on-pr-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-42-minimal-plus-on-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-on-push.yaml new file mode 100644 index 0000000..5c51b92 --- /dev/null +++ b/.tekton/fedora-bootc-42-minimal-plus-on-push.yaml @@ -0,0 +1,48 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-minimal-plus-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:42 + - MANIFEST=fedora-minimal-plus + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From dc8b1ed4333e5dded5f96d3fd915c0917ac9bfdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 3 Apr 2025 12:19:55 +0200 Subject: [PATCH 032/697] Fedora 42 standard base image --- ...ora-bootc-42-standard-on-pull-request.yaml | 53 +++++++++++++++++++ .tekton/fedora-bootc-42-standard-on-push.yaml | 48 +++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .tekton/fedora-bootc-42-standard-on-pull-request.yaml create mode 100644 .tekton/fedora-bootc-42-standard-on-push.yaml diff --git a/.tekton/fedora-bootc-42-standard-on-pull-request.yaml b/.tekton/fedora-bootc-42-standard-on-pull-request.yaml new file mode 100644 index 0000000..7a34bf8 --- /dev/null +++ b/.tekton/fedora-bootc-42-standard-on-pull-request.yaml @@ -0,0 +1,53 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-on-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-standard-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:42 + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:on-pr-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-42-standard-on-push.yaml b/.tekton/fedora-bootc-42-standard-on-push.yaml new file mode 100644 index 0000000..f825b21 --- /dev/null +++ b/.tekton/fedora-bootc-42-standard-on-push.yaml @@ -0,0 +1,48 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-standard-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/fedora/fedora:42 + - MANIFEST=fedora-standard + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From b9c3877eadcdcd8ad92b1f8ee43b32378f6aa629 Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Tue, 8 Apr 2025 17:03:28 -0400 Subject: [PATCH 033/697] README: document where the images are With the Konflux pipeline working, we should reference how to get those images more easily. Signed-off-by: Micah Abbott --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 02b1e68..c086dd1 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,15 @@ to support smaller custom images. For more on this, see All non-trivial changes to **minimal** and **minimal-plus** should be ACKed by at least one stakeholder of each Fedora variant WGs. +### Available Tiers + Versions + +> **NOTE:** The location and naming of these images is subject to change. + +| Version | standard | minimal | minimal-plus | +| ------- | -------- | ------- | ------------ | +| Rawhide | quay.io/fedora-testing/fedora-bootc:rawhide-standard | quay.io/fedora-testing/fedora-bootc:rawhide-minimal | quay.io/fedora-testing/fedora-bootc:rawhide-minimal-plus | +| Fedora 42 | quay.io/fedora-testing/fedora-bootc:42-standard | quay.io/fedora-testing/fedora-bootc:42-minimal | quay.io/fedora-testing/fedora-bootc:42-minimal-plus | + ## More information Documentation: From 909485741a907a9bc1f54f3e12a0b1b864a63f57 Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Tue, 8 Apr 2025 17:05:06 -0400 Subject: [PATCH 034/697] README: Markdown lint fixes Signed-off-by: Micah Abbott --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c086dd1..16c2ec8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The current default user experience is to build *layered* images on top of the o binary base images produced and tested by this project. See the documentation[5] for more info. You can build custom base images by forking this repository; however, -https://gitlab.com/fedora/bootc/tracker/-/issues/32 tracks a more supportable + tracks a more supportable mechanism that is not simply forking. For more information see[6]. ## Build process @@ -25,7 +25,7 @@ note the build process uses a special podman-ecosystem specific mechanism to create fully custom images while inside a `Containerfile`. You need to enable some privileges as nested containerization is required. -``` +```bash podman build --security-opt=label=disable --cap-add=all \ --device /dev/fuse -t localhost/fedora-bootc . ``` @@ -38,7 +38,7 @@ By default, the base images are built for Fedora rawhide. To build against a different Fedora version, you can override the `FROM` image used to obtain the Fedora repos and dnf variables. E.g.: -``` +```bash podman build --from quay.io/fedora/fedora:41 ... ``` @@ -59,9 +59,9 @@ to support smaller custom images. For more on this, see [this tracker issue](https://gitlab.com/fedora/bootc/tracker/-/issues/32). - **standard**: This image is the default, what is published as - https://quay.io/repository/fedora/fedora-bootc + - **minimal**: This content set is more of a convenient centralization point for CI - and curation around a package set that is intended as a starting point fror + and curation around a package set that is intended as a starting point for a container base image. - **minimal-plus**: This content set is intended to be the shared base used by all image-based Fedora variants (IoT, Atomic Desktops, and CoreOS). From 2bf75a020f887dff8a1ea961ce1c23882b71c7ff Mon Sep 17 00:00:00 2001 From: djach7 Date: Mon, 7 Apr 2025 15:41:56 -0400 Subject: [PATCH 035/697] Adds iot-standard manifest to bootc base images Signed-off-by: djach7 --- fedora-iot.yaml | 4 ++++ install-manifests | 2 +- iot/manifest.yaml | 59 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 fedora-iot.yaml create mode 100644 iot/manifest.yaml diff --git a/fedora-iot.yaml b/fedora-iot.yaml new file mode 100644 index 0000000..487bf77 --- /dev/null +++ b/fedora-iot.yaml @@ -0,0 +1,4 @@ +include: + - iot/manifest.yaml + - fedora-minimal-plus.yaml + \ No newline at end of file diff --git a/install-manifests b/install-manifests index 867eb62..93d878c 100755 --- a/install-manifests +++ b/install-manifests @@ -4,7 +4,7 @@ set -xeuo pipefail # into their installed location. manifestdir=${1:-/usr/share/doc/bootc-base-imagectl/manifests} mkdir -p "$manifestdir/" -for image in minimal standard minimal-plus; do +for image in minimal standard minimal-plus iot; do # Embed the generic defaults cp -a $image $manifestdir/ # And the Fedora-specific tweaks diff --git a/iot/manifest.yaml b/iot/manifest.yaml new file mode 100644 index 0000000..229babd --- /dev/null +++ b/iot/manifest.yaml @@ -0,0 +1,59 @@ +metadata: + summary: Fedora IoT bootc image + +variables: + distro: "fedora-iot" + +packages: + - fedora-release-iot + - fedora-iot-config + - atheros-firmware + - brcmfmac-firmware + - chrony + - clevis + - clevis-dracut + - clevis-luks + - clevis-pin-tpm2 + - containernetworking-plugins + - dnf5-plugins + - dracut-config-generic + - dracut-network + - fdo-client + - fdo-owner-cli + - firewalld + - fwupd-efi + - fwupd-plugin-modem-manager + - fwupd-plugin-uefi-capsule-data + - greenboot + - greenboot-default-health-checks + - ignition + - ignition-edge + - ima-evm-utils + - iputils + - iwd + - iwlwifi-mvm-firmware + - libsss_sudo + - NetworkManager-wifi + - NetworkManager-wwan + - openssl + - pinentry + - procps-ng + - realtek-firmware + - rootfiles + - screen + - setools-console + - slirp4netns + - ssh-key-dir + - sssd-client + - tmux + - tpm2-pkcs11 + - traceroute + - usbguard + - wpa_supplicant + - wireless-regdb +packages-aarch64: + - arm-image-installer + - bcm283x-firmware + - optee_client + - uboot-images-armv8 + \ No newline at end of file From 089ae4f7e9df3ac8bea0c6d3573b7a0894ac1ce0 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 23 Apr 2025 11:12:43 -0400 Subject: [PATCH 036/697] standard/coreos-user-experience: include makedumpfile, kdump-utils The comment states that we want to support kdump so we need the makedumpfile and kdump-utils RPM for that. Note here that we specify paths rather than RPM names because downstream in EL9 those subpackages were still part of the kexec-tools package and not broken out yet. --- standard/coreos-user-experience.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/standard/coreos-user-experience.yaml b/standard/coreos-user-experience.yaml index 1098094..1ca6463 100644 --- a/standard/coreos-user-experience.yaml +++ b/standard/coreos-user-experience.yaml @@ -8,7 +8,14 @@ packages: - console-login-helper-messages-profile # kdump support # https://github.com/coreos/fedora-coreos-tracker/issues/622 + # The makedumpfile and kdump-utils RPMs were broken out in + # Fedora and EL10+. To be able to use the same package list + # Across EL9 + Fedora + EL10 let's just name paths for now. + # We can go back to just specifying the RPM names when we + # no longer support EL9. - kexec-tools + - /usr/share/makedumpfile # makedumpfile RPM + - /usr/bin/kdumpctl # kdump-utils RPM # Container tooling - toolbox # nvme-cli for managing nvme disks From 40e33e055ae7e83817ee7f73349fb14c0f4ecd0c Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 23 Apr 2025 08:54:12 -0400 Subject: [PATCH 037/697] Add riscv64 support Add a riscv64 stanza for the bootloader so we can build images for riscv64 and conditionalize kexec-tools because it's not yet built for riscv64. --- minimal/bootupd.yaml | 8 ++++++++ standard/coreos-user-experience.yaml | 27 +++++++++++++++++---------- 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/minimal/bootupd.yaml b/minimal/bootupd.yaml index 6b55aa3..2932317 100644 --- a/minimal/bootupd.yaml +++ b/minimal/bootupd.yaml @@ -8,6 +8,14 @@ packages-aarch64: - grub2-efi-aa64 efibootmgr shim packages-ppc64le: - grub2 ostree-grub2 +packages-riscv64: + - grub2-efi-riscv64 efibootmgr + # Don't specify just `shim` for now because riscv isn't built in + # main koji instance yet and thus isn't signed. Here we specify + # the path to the provided file so when we do switch to the signed + # `shim` package it will transparently happen and we can clean up + # this packagelist entry later. + - /boot/efi/EFI/fedora/shimriscv64.efi packages-s390x: # For zipl - s390utils-core diff --git a/standard/coreos-user-experience.yaml b/standard/coreos-user-experience.yaml index 1ca6463..295ea0b 100644 --- a/standard/coreos-user-experience.yaml +++ b/standard/coreos-user-experience.yaml @@ -6,19 +6,26 @@ packages: # Improved MOTD experience - console-login-helper-messages-issuegen - console-login-helper-messages-profile - # kdump support - # https://github.com/coreos/fedora-coreos-tracker/issues/622 - # The makedumpfile and kdump-utils RPMs were broken out in - # Fedora and EL10+. To be able to use the same package list - # Across EL9 + Fedora + EL10 let's just name paths for now. - # We can go back to just specifying the RPM names when we - # no longer support EL9. - - kexec-tools - - /usr/share/makedumpfile # makedumpfile RPM - - /usr/bin/kdumpctl # kdump-utils RPM # Container tooling - toolbox # nvme-cli for managing nvme disks - nvme-cli # Used by admins interactively - lsof + +conditional-include: + - if: basearch != "riscv64" + # TODO: kexec-tools isn't built for riscv yet so conditionalize these here + # https://github.com/coreos/fedora-coreos-tracker/issues/1931 + include: + packages: + # kdump support + # https://github.com/coreos/fedora-coreos-tracker/issues/622 + # The makedumpfile and kdump-utils RPMs were broken out in + # Fedora and EL10+. To be able to use the same package list + # Across EL9 + Fedora + EL10 let's just name paths for now. + # We can go back to just specifying the RPM names when we + # no longer support EL9. + - kexec-tools + - /usr/share/makedumpfile # makedumpfile RPM + - /usr/bin/kdumpctl # kdump-utils RPM From eb150e1f72c7f551a0b7571d830c358aafee17f2 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Thu, 24 Apr 2025 07:54:45 +0200 Subject: [PATCH 038/697] standard: Add python3-libdnf5 for Ansible support Ansible's package builtin [1] uses dnf's Python API. This fails by default with "Could not import the libdnf5 python module". This is awkward and laborious to work around in Containerfiles, as you can't use the normal `package:` to install, so it would require distribution/release specific code, and replicating this to all playbooks. In particular this fixes linux-system-roles for running during bootc container builds. [1] https://docs.ansible.com/ansible/latest/collections/ansible/builtin/package_module.html --- standard/manifest.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/standard/manifest.yaml b/standard/manifest.yaml index 4810817..217086e 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -42,6 +42,8 @@ packages: - zram-generator # This one is in Python so isn't in FCOS, but we can safely add it here. - sos + # Make Ansible "package" builtin work by default + - python3-libdnf5 # These are random architecture-specific packages packages-x86_64: From 0f11682ed3f96b7d933502ee83d81e4209758f54 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 28 Apr 2025 10:52:49 +0200 Subject: [PATCH 039/697] standard: Add python3-rpm for Ansible support Ansible's `package_facts` builtin [1] uses rpm's Python API. This fails by default with "Could not detect a supported package manager". In particular this fixes linux-system-roles for running during bootc container builds. [1] https://docs.ansible.com/ansible/latest/collections/ansible/builtin/package_facts_module.html --- standard/manifest.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/standard/manifest.yaml b/standard/manifest.yaml index 217086e..8c1e465 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -44,6 +44,8 @@ packages: - sos # Make Ansible "package" builtin work by default - python3-libdnf5 + # Make Ansible "package_facts" builtin work by default + - python3-rpm # These are random architecture-specific packages packages-x86_64: From b251e1cbb388fcc39374f3327dd6ee73bb87863d Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 29 Apr 2025 15:23:34 -0400 Subject: [PATCH 040/697] Containerfile: drop pulling rpm-ostree from copr Things have stabilized a bit now so let's revert 1a5ba89 so it's easier to override the builder image if someone wants to do that. --- Containerfile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Containerfile b/Containerfile index 4bfaf00..4453cf9 100644 --- a/Containerfile +++ b/Containerfile @@ -13,13 +13,8 @@ ARG REPOS_IMAGE=quay.io/fedora/fedora:rawhide FROM $REPOS_IMAGE as repos # BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. -FROM quay.io/fedora/fedora:41 as builder -# However we also pull rpm-ostree from git main to get some fixes for now -RUN < Date: Tue, 29 Apr 2025 15:25:22 -0400 Subject: [PATCH 041/697] Containerfile: explain why REPOS_IMAGE is needed Having this is a bit confusing because the use case for it is exactly what `podman build --from` was intended for. Let's add a comment here about why it was added in aa9c6c2 [1], which is because konflux doesn't support --from yet [1]. [1] https://gitlab.com/fedora/bootc/base-images/-/merge_requests/106#note_2380147640 --- Containerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Containerfile b/Containerfile index 4453cf9..0f173b6 100644 --- a/Containerfile +++ b/Containerfile @@ -9,6 +9,9 @@ # Override this repos container to control the base image package versions. For # example, podman build --from=quay.io/fedora/fedora:41 will get you a system # that uses Fedora 41 packages. Or inject arbitrary yum repos (COPR, etc) here. +# +# Note we also support --build-arg REPOS_IMAGE=quay.io/fedora/fedora:41 here +# since konflux doesn't yet support --from. ARG REPOS_IMAGE=quay.io/fedora/fedora:rawhide FROM $REPOS_IMAGE as repos From b5275ecaf78fc7282ac383f899761eec0a7f250f Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 29 Apr 2025 15:29:18 -0400 Subject: [PATCH 042/697] Containerfile: support --build-arg BUILDER_IMAGE=quay.io/... too This will make it easier to override the builder image if that's desired too. --- Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 0f173b6..4e30563 100644 --- a/Containerfile +++ b/Containerfile @@ -13,10 +13,11 @@ # Note we also support --build-arg REPOS_IMAGE=quay.io/fedora/fedora:41 here # since konflux doesn't yet support --from. ARG REPOS_IMAGE=quay.io/fedora/fedora:rawhide +ARG BUILDER_IMAGE=quay.io/fedora/fedora:rawhide FROM $REPOS_IMAGE as repos # BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. -FROM quay.io/fedora/fedora:rawhide as builder +FROM $BUILDER_IMAGE as builder RUN dnf -y install rpm-ostree selinux-policy-targeted ARG MANIFEST=fedora-standard # The input git repository has .repo files committed to git rpm-ostree has historically From d2cfbe1c959e1c6155b29e64306d3e7f2a392fab Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 30 Apr 2025 14:58:28 -0400 Subject: [PATCH 043/697] Containerfile: name the python3 dependency Since bootc-base-imagectl is python3 we need to make sure it's installed in our `builder` container steps. --- Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 4e30563..f89430c 100644 --- a/Containerfile +++ b/Containerfile @@ -16,9 +16,10 @@ ARG REPOS_IMAGE=quay.io/fedora/fedora:rawhide ARG BUILDER_IMAGE=quay.io/fedora/fedora:rawhide FROM $REPOS_IMAGE as repos -# BOOTSTRAPPING: This can be any image that has rpm-ostree and selinux-policy-targeted. +# BOOTSTRAPPING: This can be any image that has rpm-ostree, selinux-policy-targeted +# and python3 (for bootc-base-imagectl). FROM $BUILDER_IMAGE as builder -RUN dnf -y install rpm-ostree selinux-policy-targeted +RUN dnf -y install rpm-ostree selinux-policy-targeted python3 ARG MANIFEST=fedora-standard # The input git repository has .repo files committed to git rpm-ostree has historically # emphasized that. But here, we are fetching the repos from the container base image. From 31306a297b6eafa53ca3d0022d4b4a4b4e47b3b4 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 6 May 2025 16:37:47 -0400 Subject: [PATCH 044/697] tests: simplify to use just the built bootc image I'm sure there is a reason for why it is the way it is, which I will learn about, but the way it is currently set up makes it hard to run commands in the target system (like `rpm -q`) without doing a chroot and doing a chroot requires some setup to happen. I guess the nice thing about the way it is prior is we get to the look at the filesystem untouched by the container runtime; which can definitely be useful for tests. --- tests/rootfs/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/rootfs/Dockerfile b/tests/rootfs/Dockerfile index 10e6e0c..0e407e2 100644 --- a/tests/rootfs/Dockerfile +++ b/tests/rootfs/Dockerfile @@ -1,6 +1,4 @@ # This should always be replaced with podman build --from. -FROM localhost/image-to-test as rootfs - -FROM quay.io/centos/centos:stream10 +FROM localhost/image-to-test COPY . /src -RUN --mount=type=bind,from=rootfs,target=/target-rootfs /src/run /target-rootfs +RUN /src/run / From 5d628fd3f4f7aa159c98d758d9a9188d542c8684 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 6 May 2025 16:50:20 -0400 Subject: [PATCH 045/697] tests/rootfs/README: document how to run the tests It's simple, but worth a few lines in the README. --- tests/rootfs/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/rootfs/README.md b/tests/rootfs/README.md index a8f3381..733afef 100644 --- a/tests/rootfs/README.md +++ b/tests/rootfs/README.md @@ -2,3 +2,10 @@ This is a set of scripts that sanity check the target rootfs in a read-only fashion. + +To run the tests: + +``` +podman build --from localhost/fedora-bootc:latest -t localhost/test-bootc . +podman rmi localhost/test-bootc:latest # Clean up any created images +``` From 986b59b5c12a8a3d80d1a9a8e255e747c090db98 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 6 May 2025 16:51:07 -0400 Subject: [PATCH 046/697] minimal: drop exclude on iptables-legacy; add test In Fedora CoreOS we are still including iptables-legacy for now [1] and since you can't really overwrite an `exclude-packages` entry it means we can't update our git submodule. We are working to get away from using a git submodule [2], but I'd like to get ours updated in the mean time. [1] https://github.com/coreos/fedora-coreos-tracker/issues/1818 [2] https://github.com/coreos/fedora-coreos-tracker/issues/1861 --- minimal/bootc.yaml | 4 ---- tests/rootfs/cases/no-iptables-legacy | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100755 tests/rootfs/cases/no-iptables-legacy diff --git a/minimal/bootc.yaml b/minimal/bootc.yaml index d98497d..a2500ce 100644 --- a/minimal/bootc.yaml +++ b/minimal/bootc.yaml @@ -7,10 +7,6 @@ packages: - xfsprogs e2fsprogs dosfstools exclude-packages: - # bootc pulls in podman, which pulls in containers-common, which wants - # `iptables`. That may pull in iptables-legacy which we don't want; - # we want iptables-nft to win the Provides by default - - iptables-legacy # Exclude kernel-debug-core to make sure that it doesn't somehow get # chosen as the package to satisfy the `kernel-core` dependency from # the kernel package. diff --git a/tests/rootfs/cases/no-iptables-legacy b/tests/rootfs/cases/no-iptables-legacy new file mode 100755 index 0000000..0100c5d --- /dev/null +++ b/tests/rootfs/cases/no-iptables-legacy @@ -0,0 +1,4 @@ +#!/bin/bash +set -xeuo pipefail +output=$(rpm -q iptables-legacy || true) +grep "is not installed" <<< "$output" From 17e7a219646490091d536693a7e3c53fde1a5599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 9 May 2025 12:09:07 +0200 Subject: [PATCH 047/697] Update rawhide minimal build pipeline --- .tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-on-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml index 5ff2f0f..b987ed3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml index a4ef672..50f87a0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml @@ -40,7 +40,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 4036aa988fc74d9e040613c3ee2fd40e6d6763dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 9 May 2025 12:27:05 +0200 Subject: [PATCH 048/697] Update rawhide minimal plus build pipeline --- .tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml index 9f45eef..3e94a23 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml index 834a6c5..db52533 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml @@ -40,7 +40,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From e2e026286130721eeac85ca3a3e651f2ad93b043 Mon Sep 17 00:00:00 2001 From: djach7 Date: Mon, 7 Apr 2025 15:41:56 -0400 Subject: [PATCH 049/697] Update rawhide standard build pipeline --- .tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-on-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml index 044203b..df0945e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-on-push.yaml b/.tekton/fedora-bootc-rawhide-standard-on-push.yaml index 2a30040..43837e7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-on-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-on-push.yaml @@ -40,7 +40,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 8685cd1c70298be22bddb5a13253db4c11ec383e Mon Sep 17 00:00:00 2001 From: konflux Date: Fri, 9 May 2025 10:52:46 +0000 Subject: [PATCH 050/697] Konflux update fedora-bootc-rawhide-iot Signed-off-by: konflux --- ...fedora-bootc-rawhide-iot-pull-request.yaml | 602 ++++++++++++++++++ .tekton/fedora-bootc-rawhide-iot-push.yaml | 599 +++++++++++++++++ 2 files changed, 1201 insertions(+) create mode 100644 .tekton/fedora-bootc-rawhide-iot-pull-request.yaml create mode 100644 .tekton/fedora-bootc-rawhide-iot-push.yaml diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml new file mode 100644 index 0000000..2d02379 --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -0,0 +1,602 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-iot-on-pull-request + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:on-pr-{{revision}} + - name: image-expires-after + value: 5d + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(params.output-image) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: {} + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml new file mode 100644 index 0000000..92b965e --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -0,0 +1,599 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-rawhide-iot-on-push + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(params.output-image) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: {} + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From ef5e95d5bd44fedf7f64f960f4eec73999531a2a Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Fri, 9 May 2025 12:52:16 -0400 Subject: [PATCH 051/697] whitespace changes to appease downstream CI The prow/validate job does some various whitespace checks and was complaining about these so I guess I'll try to make it happy: ``` [+] Found files with whitespace at the end of line ./fedora-coreos-config/fedora-bootc/.gitlab-ci.yml ./fedora-coreos-config/fedora-bootc/bootc-base-imagectl.md ./fedora-coreos-config/fedora-bootc/fedora-iot.yaml ./fedora-coreos-config/fedora-bootc/iot/manifest.yaml [+] Found files with missing empty line at end of file ./fedora-coreos-config/fedora-bootc/bootc-base-imagectl ./fedora-coreos-config/fedora-bootc/fedora-iot.yaml ./fedora-coreos-config/fedora-bootc/iot/manifest.yaml ``` --- .gitlab-ci.yml | 2 +- bootc-base-imagectl | 3 ++- bootc-base-imagectl.md | 6 +++--- fedora-iot.yaml | 2 +- iot/manifest.yaml | 4 ++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e201329..9bbf195 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,7 @@ build-minimal: script: | set -xeuo pipefail buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal ${PRIV_ARGS} --build-arg=manifest=fedora-minimal . - cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc:minimal + cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc:minimal build-minimal-plus: extends: .build-image diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 6f1e9da..4dc2d7b 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -114,4 +114,5 @@ if __name__ == "__main__": cmd_list.set_defaults(func=run_list) args = parser.parse_args() - args.func(args) \ No newline at end of file + args.func(args) + diff --git a/bootc-base-imagectl.md b/bootc-base-imagectl.md index b3cba04..311bb7a 100644 --- a/bootc-base-imagectl.md +++ b/bootc-base-imagectl.md @@ -90,7 +90,7 @@ and downloaded by clients, even if the content didn't actually change. The `bootc-base-imagectl rechunk` command fixes all of these issues by taking an input container, operates on its final merged filesystem tree (hence removed/overridden files are handled), and then splits it up -(currently based on the RPM database) into separate layers (tarballs). +(currently based on the RPM database) into separate layers (tarballs). Further, because bootc uses OSTree today, and OSTree canonializes all timestamps to zero on the client side, this tool does that at build time. @@ -104,7 +104,7 @@ can be selected by passing `--manifest` to `build-rootfs`. The current implementation uses `rpm-ostree` on a manifest (treefile) embedded in the container image itself. These manifests are not intended -to be editable directly. +to be editable directly. To emphasize: the implementation of this command (especially the configuration files that it reads) are subject to change. @@ -113,7 +113,7 @@ files that it reads) are subject to change. The build tooling is designed to support "cross builds"; the repository root could e.g. be CentOS Stream 10, while the -builder root is Fedora or RHEL, etc. +builder root is Fedora or RHEL, etc. In other words, one given base image can be used as a "builder" to produce another using different RPMs. diff --git a/fedora-iot.yaml b/fedora-iot.yaml index 487bf77..27aabce 100644 --- a/fedora-iot.yaml +++ b/fedora-iot.yaml @@ -1,4 +1,4 @@ include: - iot/manifest.yaml - fedora-minimal-plus.yaml - \ No newline at end of file + diff --git a/iot/manifest.yaml b/iot/manifest.yaml index 229babd..52922a8 100644 --- a/iot/manifest.yaml +++ b/iot/manifest.yaml @@ -1,6 +1,6 @@ metadata: summary: Fedora IoT bootc image - + variables: distro: "fedora-iot" @@ -56,4 +56,4 @@ packages-aarch64: - bcm283x-firmware - optee_client - uboot-images-armv8 - \ No newline at end of file + From 1c3891199cd2aa33982902c8ffeee1100d375995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 13 May 2025 15:05:20 +0200 Subject: [PATCH 052/697] Use the pipelinerun filename expected by conflux --- ...uest.yaml => fedora-bootc-rawhide-minimal-pull-request.yaml} | 2 +- ...imal-on-push.yaml => fedora-bootc-rawhide-minimal-push.yaml} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename .tekton/{fedora-bootc-rawhide-minimal-on-pull-request.yaml => fedora-bootc-rawhide-minimal-pull-request.yaml} (97%) rename .tekton/{fedora-bootc-rawhide-minimal-on-push.yaml => fedora-bootc-rawhide-minimal-push.yaml} (100%) diff --git a/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml similarity index 97% rename from .tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml rename to .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index b987ed3..fa761ce 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-on-pull-request.yaml".pathChanged() + || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null labels: diff --git a/.tekton/fedora-bootc-rawhide-minimal-on-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml similarity index 100% rename from .tekton/fedora-bootc-rawhide-minimal-on-push.yaml rename to .tekton/fedora-bootc-rawhide-minimal-push.yaml From 1a11ff465496a0ea10992548331876d2b944caff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 13 May 2025 15:21:47 +0200 Subject: [PATCH 053/697] Use the pipelinerun filename expected by konflux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- ...ml => fedora-bootc-rawhide-minimal-plus-pull-request.yaml} | 2 +- ...-push.yaml => fedora-bootc-rawhide-minimal-plus-push.yaml} | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) rename .tekton/{fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml => fedora-bootc-rawhide-minimal-plus-pull-request.yaml} (97%) rename .tekton/{fedora-bootc-rawhide-minimal-plus-on-push.yaml => fedora-bootc-rawhide-minimal-plus-push.yaml} (85%) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml similarity index 97% rename from .tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml rename to .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 3e94a23..fa0f664 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-on-pull-request.yaml".pathChanged() + || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null labels: diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml similarity index 85% rename from .tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml rename to .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index db52533..5795355 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-on-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -8,7 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide From 91f14f3f6549bd32cb9f80d245e65320c5884c04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 13 May 2025 15:26:39 +0200 Subject: [PATCH 054/697] Use the pipelinerun filename expected by konflux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- ...t.yaml => fedora-bootc-rawhide-standard-pull-request.yaml} | 2 +- ...d-on-push.yaml => fedora-bootc-rawhide-standard-push.yaml} | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) rename .tekton/{fedora-bootc-rawhide-standard-on-pull-request.yaml => fedora-bootc-rawhide-standard-pull-request.yaml} (97%) rename .tekton/{fedora-bootc-rawhide-standard-on-push.yaml => fedora-bootc-rawhide-standard-push.yaml} (86%) diff --git a/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml similarity index 97% rename from .tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml rename to .tekton/fedora-bootc-rawhide-standard-pull-request.yaml index df0945e..c76d8ed 100644 --- a/.tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-on-pull-request.yaml".pathChanged() + || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null labels: diff --git a/.tekton/fedora-bootc-rawhide-standard-on-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml similarity index 86% rename from .tekton/fedora-bootc-rawhide-standard-on-push.yaml rename to .tekton/fedora-bootc-rawhide-standard-push.yaml index 43837e7..cb3077a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-on-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -8,7 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide From 64f4963fc348b1f4316f484d9dfb27407fa8f274 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Fri, 9 May 2025 15:36:39 -0400 Subject: [PATCH 055/697] bootc-base-imagectl: support extending package list The current custom base image flow of rebuilding a "built-in" image with custom repos and then adding your own content separate is reasonable, but it would be nice if one could augment the list of packages to install in that initial build rather than as a separate transaction. Then, you don't have to cleanup after dnf and `/var` content, re-inject repo definitions, and refetch repo metadata. It also allows building container images with additional packages without `dnf` necessarily being in the package set. We don't want to leak rpm-ostree implementation details, nor do we want to invent a new format. So just add support for a `--install` arg and a generic `--args-file` to pass arguments via a file. We then generate a new treefile on the fly to extend the `packages` list. --- bootc-base-imagectl | 33 ++++++++++++++++++++++++++++++--- tests/Containerfile.test-derive | 7 ++++++- 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 4dc2d7b..f1d417a 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -8,6 +8,7 @@ import stat import json import argparse import sys +import tempfile MANIFESTDIR = 'usr/share/doc/bootc-base-imagectl/manifests' @@ -17,9 +18,23 @@ def run_build_rootfs(args): """ target = args.target if os.path.isdir(args.manifest): - manifest_path = os.path.join(args.manifest, 'manifest.yaml') + manifest_path = os.path.join(f'/{MANIFESTDIR}', args.manifest, 'manifest.yaml') else: - manifest_path = args.manifest + '.yaml' + manifest_path = f'/{MANIFESTDIR}/{args.manifest}.yaml' + + tmp_manifest = None + if args.install: + additional_pkgs = set(args.install) + if len(additional_pkgs) > 0: + final_manifest = { + "include": manifest_path, + "packages": list(additional_pkgs), + } + tmp_manifest = tempfile.NamedTemporaryFile(mode='w', encoding='utf-8', suffix='.json', delete_on_close=False) + json.dump(final_manifest, tmp_manifest) + tmp_manifest.close() + manifest_path = tmp_manifest.name + rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] try: # Assume we can mutate alternative roots @@ -28,7 +43,7 @@ def run_build_rootfs(args): else: # But we shouldn't need to mutate the default root rpmostree_argv.append('--source-root=/') - rpmostree_argv.extend([f'/{MANIFESTDIR}/{manifest_path}', target]) + rpmostree_argv.extend([manifest_path, target]) # Perform the build subprocess.run(rpmostree_argv, check=True) # Work around https://github.com/coreos/rpm-ostree/pull/5322 @@ -46,6 +61,9 @@ def run_build_rootfs(args): except subprocess.CalledProcessError as e: print(f"Error executing command: {e}") sys.exit(1) + finally: + if tmp_manifest is not None: + del tmp_manifest # Copy our own build configuration into the target if configured; # this is used for the first stage build. But by default *secondary* @@ -95,11 +113,13 @@ def run_list(args): if __name__ == "__main__": parser = argparse.ArgumentParser(description="Operate on the build configuration for this container") + parser.add_argument("--args-file", help="File containing arguments to parse (one argument per line)", metavar='FILE') subparsers = parser.add_subparsers(help='Subcommands', required=True) build_rootfs = subparsers.add_parser('build-rootfs', help='Generate a container root filesystem') build_rootfs.add_argument("--reinject", help="Also reinject the build configurations into the target", action='store_true') build_rootfs.add_argument("--manifest", help="Use the specified manifest", action='store', default='default') + build_rootfs.add_argument("--install", help="Add a package", action='append', default=[], metavar='PACKAGE') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) @@ -114,5 +134,12 @@ if __name__ == "__main__": cmd_list.set_defaults(func=run_list) args = parser.parse_args() + if args.args_file: + add_args = [] + with open(args.args_file) as f: + for line in f: + add_args += [line.strip()] + args = parser.parse_args(sys.argv[1:] + add_args) + args.func(args) diff --git a/tests/Containerfile.test-derive b/tests/Containerfile.test-derive index 52cd0a7..07cb9bc 100644 --- a/tests/Containerfile.test-derive +++ b/tests/Containerfile.test-derive @@ -5,7 +5,10 @@ FROM quay.io/fedora/fedora-bootc:rawhide as repos # This is intentionally a locally built image FROM localhost/fedora-bootc as builder -RUN --mount=type=bind,from=repos,src=/,dst=/repos,rw /usr/libexec/bootc-base-imagectl build-rootfs --manifest=standard/manifest /repos /target-rootfs +RUN --mount=type=bind,from=repos,src=/,dst=/repos,rw < args.txt +/usr/libexec/bootc-base-imagectl --args-file args.txt build-rootfs --manifest=standard/manifest /repos /target-rootfs +EORUN # This pulls in the rootfs generated in the previous step FROM scratch @@ -15,6 +18,8 @@ set -xeuo pipefail . /usr/lib/os-release test "$ID" = fedora +rpm -q ltrace + # And install a package dnf -y install strace dnf clean all From 4888be4e199583664fe32264f16ff9e166372c34 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 14 May 2025 16:11:42 -0400 Subject: [PATCH 056/697] move systemd-preset enablement code to minimal Arguably we still want to remove rpm systemd enablements and use the presets for the original image we create for all of our images. --- minimal/manifest.yaml | 1 + minimal/systemd-presets.yaml | 11 +++++++++++ standard/manifest.yaml | 9 --------- 3 files changed, 12 insertions(+), 9 deletions(-) create mode 100644 minimal/systemd-presets.yaml diff --git a/minimal/manifest.yaml b/minimal/manifest.yaml index 2c4a62e..544447b 100644 --- a/minimal/manifest.yaml +++ b/minimal/manifest.yaml @@ -27,6 +27,7 @@ include: - initramfs.yaml - basic-fixes.yaml - kernel-install.yaml + - systemd-presets.yaml packages: # this is implied by dependencies but let's make it explicit diff --git a/minimal/systemd-presets.yaml b/minimal/systemd-presets.yaml new file mode 100644 index 0000000..4607210 --- /dev/null +++ b/minimal/systemd-presets.yaml @@ -0,0 +1,11 @@ +# Postprocessing relating to systemd presets on the system. +postprocess: + # Undo RPM scripts enabling units; we want the presets to be canonical + # https://github.com/projectatomic/rpm-ostree/issues/1803 + - | + #!/bin/bash + set -xeuo pipefail + rm -rf /etc/systemd/system/* + systemctl preset-all + rm -rf /etc/systemd/user/* + systemctl --user --global preset-all diff --git a/standard/manifest.yaml b/standard/manifest.yaml index 8c1e465..2016cc2 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -59,15 +59,6 @@ packages-aarch64: - irqbalance postprocess: - # Undo RPM scripts enabling units; we want the presets to be canonical - # https://github.com/projectatomic/rpm-ostree/issues/1803 - - | - #!/usr/bin/env bash - set -xeuo pipefail - rm -rf /etc/systemd/system/* - systemctl preset-all - rm -rf /etc/systemd/user/* - systemctl --user --global preset-all # See: https://github.com/coreos/fedora-coreos-tracker/issues/1253 # https://bugzilla.redhat.com/show_bug.cgi?id=2112857 # https://github.com/coreos/rpm-ostree/issues/3918 From 672148a82d2f69273fa08aee13c784ac6c052d43 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Fri, 16 May 2025 15:45:07 -0400 Subject: [PATCH 057/697] minimal/systemd-presets: preset dnf-makecache.timer to disabled This one doesn't make much sense to have enabled by default on systems with image based updates because we shouldn't need a local cache of yum repo metadata (i.e. we should just be interacting with a registry). --- minimal/systemd-presets.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/minimal/systemd-presets.yaml b/minimal/systemd-presets.yaml index 4607210..3f0ce69 100644 --- a/minimal/systemd-presets.yaml +++ b/minimal/systemd-presets.yaml @@ -1,5 +1,14 @@ # Postprocessing relating to systemd presets on the system. postprocess: + - | + #!/bin/bash + set -xeuo pipefail + # Override some of the default presets. + cat < usr/lib/systemd/system-preset/85-bootc.preset + # Disable dnf-makecache.timer on bootc/image mode systems + # https://github.com/coreos/fedora-coreos-tracker/issues/1896#issuecomment-2848251507 + disable dnf-makecache.timer + EOF # Undo RPM scripts enabling units; we want the presets to be canonical # https://github.com/projectatomic/rpm-ostree/issues/1803 - | From 0eb9ac2a15bccc1081925be41a306abdebcc97d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 15 May 2025 01:50:42 +0200 Subject: [PATCH 058/697] Enable renovate dependency dashboard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index c29201b..01e9e51 100644 --- a/renovate.json +++ b/renovate.json @@ -3,6 +3,7 @@ "extends": [ "github>platform-engineering-org/.github" ], + "dependencyDashboard": true, "baseBranches": ["main", "f40", "f41"], "packageRules": [ { From ee48c2dd7378c1571ca9d398b012ad450261309b Mon Sep 17 00:00:00 2001 From: konflux Date: Tue, 13 May 2025 11:50:40 +0000 Subject: [PATCH 059/697] Konflux update fedora-bootc-42-iot Signed-off-by: konflux --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 602 ++++++++++++++++++ .tekton/fedora-bootc-42-iot-push.yaml | 599 +++++++++++++++++ 2 files changed, 1201 insertions(+) create mode 100644 .tekton/fedora-bootc-42-iot-pull-request.yaml create mode 100644 .tekton/fedora-bootc-42-iot-push.yaml diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml new file mode 100644 index 0000000..9a8d160 --- /dev/null +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -0,0 +1,602 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-iot-on-pull-request + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:on-pr-{{revision}} + - name: image-expires-after + value: 5d + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(params.output-image) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: {} + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml new file mode 100644 index 0000000..9671b2c --- /dev/null +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -0,0 +1,599 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-42-iot-on-push + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(params.output-image) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: {} + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From 4f66e093371e8660ab8a68173af28347fc06e7c6 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 14 May 2025 14:58:32 -0400 Subject: [PATCH 060/697] base-imagectl: support --cachedir As far as I can tell --cachedir was used prior to bootc-base-imagectl being introduced in c89b6f4. Let's add the --cachedir option to bootc-base-imagectl, but we won't use it in our Containerfile yet because we need to wait for [1] to land in an rpm-ostree release. This is useful today for people hacking away locally. [1] https://github.com/coreos/rpm-ostree/pull/5391 --- bootc-base-imagectl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index f1d417a..545385f 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -37,6 +37,8 @@ def run_build_rootfs(args): rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] try: + if args.cachedir != "": + rpmostree_argv.append(f"--cachedir={args.cachedir}") # Assume we can mutate alternative roots if args.source_root != '/': rpmostree_argv.append(f'--source-root-rw={args.source_root}') @@ -120,6 +122,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--reinject", help="Also reinject the build configurations into the target", action='store_true') build_rootfs.add_argument("--manifest", help="Use the specified manifest", action='store', default='default') build_rootfs.add_argument("--install", help="Add a package", action='append', default=[], metavar='PACKAGE') + build_rootfs.add_argument("--cachedir", help="Cache repo metadata and RPMs in specified directory", action='store', default='') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From df45d535511ea925f26991a8f6045c807a31f0c4 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 20 May 2025 14:32:22 -0400 Subject: [PATCH 061/697] Containerfile: drop type=cache mount from RUN We're currently not using this cache /workdir and we ultimately can't right now until [1] lands in an rpm-ostree release. See some background context on this in [2] [3]. [1] https://github.com/coreos/rpm-ostree/pull/5391 [2] https://gitlab.com/fedora/bootc/base-images/-/merge_requests/180 [3] https://github.com/coreos/rpm-ostree/pull/5386 --- Containerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index f89430c..9c77144 100644 --- a/Containerfile +++ b/Containerfile @@ -28,8 +28,7 @@ ARG MANIFEST=fedora-standard COPY . /src WORKDIR /src RUN rm -vf /src/*.repo -RUN --mount=type=cache,target=/workdir \ - --mount=type=bind,rw,from=repos,src=/,dst=/repos < Date: Thu, 15 May 2025 01:51:22 +0200 Subject: [PATCH 062/697] Configure renovate tekton manager to update konflux pipelines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/renovate.json b/renovate.json index 01e9e51..6336c0a 100644 --- a/renovate.json +++ b/renovate.json @@ -4,6 +4,39 @@ "github>platform-engineering-org/.github" ], "dependencyDashboard": true, + "tekton": { + "additionalBranchPrefix": "", + "includePaths": [ + ".tekton/**" + ], + "fileMatch": [ + "\\.yaml$", + "\\.yml$" + ], + "packageRules": [ + { + "matchPackageNames": [ + "/^quay.io/bootc-devel/tekton-catalog//" + ], + "enabled": true, + "groupName": "Konflux references", + "branchPrefix": "konflux/references/", + "group": { + "branchTopic": "{{{baseBranch}}}", + "commitMessageTopic": "{{{groupName}}}" + }, + "commitMessageTopic": "Konflux references", + "prBodyColumns": [ + "Package", + "Change", + "Notes" + ], + "prBodyTemplate": "{{{header}}}{{{table}}}{{{notes}}}{{{changelogs}}}{{{configDescription}}}{{{controls}}}{{{footer}}}", + "recreateWhen": "always", + "rebaseWhen": "behind-base-branch" + } + ] + }, "baseBranches": ["main", "f40", "f41"], "packageRules": [ { From c3f9ccde05222e34c7a0d9ede08da147b8b9fc69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 15 May 2025 01:51:54 +0200 Subject: [PATCH 063/697] Configure renovate custom regex manager to update compose references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/renovate.json b/renovate.json index 6336c0a..110e456 100644 --- a/renovate.json +++ b/renovate.json @@ -37,6 +37,27 @@ } ] }, + "customManagers": [ + { + "customType": "regex", + "description": [ + "Update 'REPOS_IMAGE' and 'BUILDER_IMAGE' in tekton files" + ], + "baseBranches": [ + "main" + ], + "fileMatch": [ + ".tekton/.*\\.yaml$", + ".tekton/.*\\.yml$" + ], + "matchStrings": [ + "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n", + "BUILDER_IMAGE=(?.*):(?.*)@(?.*)\\n" + ], + "versioningTemplate": "regex:(?.*)-(?\\d{8})(\\.n)?\\.(?\\d)", + "datasourceTemplate": "docker" + } + ], "baseBranches": ["main", "f40", "f41"], "packageRules": [ { From 46de491e809936d061fa29b68d7b1d9592582d8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 19 May 2025 13:40:42 +0200 Subject: [PATCH 064/697] Automerge compose updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/renovate.json b/renovate.json index 110e456..39e3d6b 100644 --- a/renovate.json +++ b/renovate.json @@ -60,6 +60,12 @@ ], "baseBranches": ["main", "f40", "f41"], "packageRules": [ + { + "matchPackageNames": [ + "quay.io/bootc-devel/.*-compose" + ], + "automerge": true + }, { "matchPackageNames": ["quay.io/fedora/fedora"], "allowedVersions": "=40", From e3a708a967ead53e992a384eb55b3a60c8cae612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 20 May 2025 19:34:54 +0200 Subject: [PATCH 065/697] Use custom bootc pipelines --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 601 +----------------- .tekton/fedora-bootc-42-iot-push.yaml | 597 +---------------- 2 files changed, 52 insertions(+), 1146 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 9a8d160..05989f8 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -9,594 +9,47 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" + == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 appstudio.openshift.io/component: fedora-bootc-42-iot pipelines.appstudio.openshift.io/type: build name: fedora-bootc-42-iot-on-pull-request - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:on-pr-{{revision}} - - name: image-expires-after - value: 5d + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:a84592d3ad6a2ba9474079f052812dae757728593470c9d600c3370ae23bf04d + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:on-pr-{{revision}} + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(params.output-image) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: {} - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 9671b2c..b34e42c 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -8,592 +8,45 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 appstudio.openshift.io/component: fedora-bootc-42-iot pipelines.appstudio.openshift.io/type: build name: fedora-bootc-42-iot-on-push - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:a84592d3ad6a2ba9474079f052812dae757728593470c9d600c3370ae23bf04d + - MANIFEST=fedora-iot + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(params.output-image) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: {} - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From c75de050ab056a5eda5caf6bcc86c50a4296e20c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 13 May 2025 15:06:01 +0200 Subject: [PATCH 066/697] Use the compose image --- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index fa761ce..2f945c2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 50f87a0..831f2f7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -33,7 +33,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} From 1ee8494bebb4eba73254e0f5d51822865cdcb4c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 22 May 2025 11:31:52 +0200 Subject: [PATCH 067/697] Do not build minimal image on each push event --- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 831f2f7..7d14eb0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -8,7 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide From dd3ad82f73ec0d2945a3745b608b23a77563d7ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 13 May 2025 15:22:27 +0200 Subject: [PATCH 068/697] Use a compose image as the repos image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index fa0f664..7d1df72 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5795355..83bbeee 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} From 1e4630800f27b39451140fc1c69d53cf86111cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 13 May 2025 15:27:10 +0200 Subject: [PATCH 069/697] Use a compose image as the repos image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c76d8ed..051e42e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index cb3077a..c94ccf7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:rawhide + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 7c18afa948f750d9efc7fc825de82f04209648cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 9 May 2025 16:05:35 +0200 Subject: [PATCH 070/697] Use custom pipeline Use the new compose base image as the repos image --- ...fedora-bootc-rawhide-iot-pull-request.yaml | 601 +----------------- .tekton/fedora-bootc-rawhide-iot-push.yaml | 597 +---------------- 2 files changed, 52 insertions(+), 1146 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 2d02379..778a7b4 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -9,594 +9,47 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" + == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide appstudio.openshift.io/component: fedora-bootc-rawhide-iot pipelines.appstudio.openshift.io/type: build name: fedora-bootc-rawhide-iot-on-pull-request - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:on-pr-{{revision}} - - name: image-expires-after - value: 5d + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:on-pr-{{revision}} + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(params.output-image) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: {} - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 92b965e..d60df78 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -8,592 +8,45 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide appstudio.openshift.io/component: fedora-bootc-rawhide-iot pipelines.appstudio.openshift.io/type: build name: fedora-bootc-rawhide-iot-on-push - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:04f15cbce548e1db7770eee3f155ccb2cc0140a6c371dc67e9a34d83673ea0c0 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - MANIFEST=fedora-iot + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:aac8127bc10c95fae3ca1248c1dd96576315f3313bca90c5c9378dbf37954a08 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0761f97595d42c87c076797e0d0f66ff572146cad958106b7f5446b182d03394 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:153ef0382deef840d155f5146f134f39b480523a7d5c38ba9fea2b58792dd4b5 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:2466d6f8787363825fea838598e91ece2c80e063796613a5c13b28ab690dfbb2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:70f2fe8ab9909c2bc8bb853ed5b880969f0de5022658f3af86f7dea15f95ff73 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(params.output-image) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:82d5951ad6348064ec33473eeb4d2fe6f7a2d3c8f3125927c04756ba35f251d2 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.1@sha256:7c2438c6201ee803de361fa2e9182fdc759126d5bc010abbbddf5aa40c7adc3c - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:11b1684965b64f1fa7c65f90a3524413022246a3863eaba188c84eb4bf0b687a - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c00535e5363f0fb90a4f6e0026aa1e68d6b10ebc3245a537545e7b99a5d60c6b - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:4973fa42a8f06238613447fbdb3d0c55eb2d718fd16f2f2591a577c29c1edb17 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:c4f87c44c4cf99f3d90435d72ad93e550b14d2928ba943715daf9015bcc1af73 - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:c7c1a5f5534ba22ecb93553632ee9e7c14f8f903dbb2ddde7b265e738686b0ea - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: {} - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles From f9032c1693d6453ead70b0efa63f8eab4aeb2749 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 26 May 2025 10:50:33 +0200 Subject: [PATCH 071/697] Fix renovate configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove 'baseBranches' configuration option as it's not allowed within the regex customManager. Fixes #59 Signed-off-by: Miguel Martín --- renovate.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/renovate.json b/renovate.json index 39e3d6b..950c79a 100644 --- a/renovate.json +++ b/renovate.json @@ -43,9 +43,6 @@ "description": [ "Update 'REPOS_IMAGE' and 'BUILDER_IMAGE' in tekton files" ], - "baseBranches": [ - "main" - ], "fileMatch": [ ".tekton/.*\\.yaml$", ".tekton/.*\\.yml$" From b7c95be866325da1db665993c2b66560a6a682aa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 26 May 2025 09:55:13 +0000 Subject: [PATCH 072/697] chore(config): migrate config renovate.json --- renovate.json | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/renovate.json b/renovate.json index 950c79a..0742403 100644 --- a/renovate.json +++ b/renovate.json @@ -9,9 +9,9 @@ "includePaths": [ ".tekton/**" ], - "fileMatch": [ - "\\.yaml$", - "\\.yml$" + "managerFilePatterns": [ + "/\\.yaml$/", + "/\\.yml$/" ], "packageRules": [ { @@ -43,9 +43,9 @@ "description": [ "Update 'REPOS_IMAGE' and 'BUILDER_IMAGE' in tekton files" ], - "fileMatch": [ - ".tekton/.*\\.yaml$", - ".tekton/.*\\.yml$" + "managerFilePatterns": [ + "/.tekton/.*\\.yaml$/", + "/.tekton/.*\\.yml$/" ], "matchStrings": [ "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n", @@ -55,7 +55,11 @@ "datasourceTemplate": "docker" } ], - "baseBranches": ["main", "f40", "f41"], + "baseBranches": [ + "main", + "f40", + "f41" + ], "packageRules": [ { "matchPackageNames": [ @@ -64,14 +68,22 @@ "automerge": true }, { - "matchPackageNames": ["quay.io/fedora/fedora"], + "matchPackageNames": [ + "quay.io/fedora/fedora" + ], "allowedVersions": "=40", - "matchBaseBranches": ["f40"] + "matchBaseBranches": [ + "f40" + ] }, { - "matchPackageNames": ["quay.io/fedora/fedora"], + "matchPackageNames": [ + "quay.io/fedora/fedora" + ], "allowedVersions": "=41", - "matchBaseBranches": ["f41"] + "matchBaseBranches": [ + "f41" + ] } ] } From fd29d147a2926c596bfda3a626104863e3126275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 26 May 2025 17:13:35 +0200 Subject: [PATCH 073/697] Update Fedora 42 minimal build pipeline --- ...est.yaml => fedora-bootc-42-minimal-pull-request.yaml} | 6 +++--- ...mal-on-push.yaml => fedora-bootc-42-minimal-push.yaml} | 8 +++++--- 2 files changed, 8 insertions(+), 6 deletions(-) rename .tekton/{fedora-bootc-42-minimal-on-pull-request.yaml => fedora-bootc-42-minimal-pull-request.yaml} (82%) rename .tekton/{fedora-bootc-42-minimal-on-push.yaml => fedora-bootc-42-minimal-push.yaml} (70%) diff --git a/.tekton/fedora-bootc-42-minimal-on-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml similarity index 82% rename from .tekton/fedora-bootc-42-minimal-on-pull-request.yaml rename to .tekton/fedora-bootc-42-minimal-pull-request.yaml index 4a52302..3549dd3 100644 --- a/.tekton/fedora-bootc-42-minimal-on-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-on-pull-request.yaml".pathChanged() + || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null labels: @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:42 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-on-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml similarity index 70% rename from .tekton/fedora-bootc-42-minimal-on-push.yaml rename to .tekton/fedora-bootc-42-minimal-push.yaml index bb474b9..3d713a3 100644 --- a/.tekton/fedora-bootc-42-minimal-on-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -8,7 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 @@ -33,14 +35,14 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:42 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 0dc3f942ebd41305421df400a8c831b72187cf1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 26 May 2025 17:05:00 +0200 Subject: [PATCH 074/697] Update Fedora 42 standard build pipeline --- ...st.yaml => fedora-bootc-42-standard-pull-request.yaml} | 6 +++--- ...rd-on-push.yaml => fedora-bootc-42-standard-push.yaml} | 8 +++++--- 2 files changed, 8 insertions(+), 6 deletions(-) rename .tekton/{fedora-bootc-42-standard-on-pull-request.yaml => fedora-bootc-42-standard-pull-request.yaml} (82%) rename .tekton/{fedora-bootc-42-standard-on-push.yaml => fedora-bootc-42-standard-push.yaml} (70%) diff --git a/.tekton/fedora-bootc-42-standard-on-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml similarity index 82% rename from .tekton/fedora-bootc-42-standard-on-pull-request.yaml rename to .tekton/fedora-bootc-42-standard-pull-request.yaml index 7a34bf8..e6a2f6c 100644 --- a/.tekton/fedora-bootc-42-standard-on-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-on-pull-request.yaml".pathChanged() + || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null labels: @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:42 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-standard - name: image-expires-after value: 5d @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-on-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml similarity index 70% rename from .tekton/fedora-bootc-42-standard-on-push.yaml rename to .tekton/fedora-bootc-42-standard-push.yaml index f825b21..1918706 100644 --- a/.tekton/fedora-bootc-42-standard-on-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -8,7 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 @@ -33,14 +35,14 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:42 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From d882a77149e20a751941088e264c877a85d14084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 26 May 2025 17:17:59 +0200 Subject: [PATCH 075/697] Update Fedora 42 minimal-plus build pipeline --- ...aml => fedora-bootc-42-minimal-plus-pull-request.yaml} | 6 +++--- ...n-push.yaml => fedora-bootc-42-minimal-plus-push.yaml} | 8 +++++--- 2 files changed, 8 insertions(+), 6 deletions(-) rename .tekton/{fedora-bootc-42-minimal-plus-on-pull-request.yaml => fedora-bootc-42-minimal-plus-pull-request.yaml} (82%) rename .tekton/{fedora-bootc-42-minimal-plus-on-push.yaml => fedora-bootc-42-minimal-plus-push.yaml} (70%) diff --git a/.tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml similarity index 82% rename from .tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml rename to .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 189d1e8..ff3e4a7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-on-pull-request.yaml".pathChanged() + || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null labels: @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:42 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-on-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml similarity index 70% rename from .tekton/fedora-bootc-42-minimal-plus-on-push.yaml rename to .tekton/fedora-bootc-42-minimal-plus-push.yaml index 5c51b92..72228dd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-on-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -8,7 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() + || "Containerfile".pathChanged() ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 @@ -33,14 +35,14 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/fedora/fedora:42 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} pipelineRef: params: - name: bundle - value: quay.io/fedora-testing/tekton-catalog:pipeline-buildah-build-bootc-multi-platform-oci-ta + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 08518a99f8437bdb9ffdfd85dd1b805551e55c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 26 May 2025 17:18:51 +0200 Subject: [PATCH 076/697] Update the compose image for the Fedora 42 IoT build pipeline. --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 05989f8..1b03aa8 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:a84592d3ad6a2ba9474079f052812dae757728593470c9d600c3370ae23bf04d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b34e42c..bd48de5 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:a84592d3ad6a2ba9474079f052812dae757728593470c9d600c3370ae23bf04d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} From 2c6d03cfe3cb53c5e7d55ca945a2bcb420b9d413 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Fri, 23 May 2025 10:49:09 -0400 Subject: [PATCH 077/697] manifests: consistently use `set -xeuo pipefail` in postprocess scripts The `set -euo pipefail` shouldn't be controversial. The `set -x` bit is more debatable because it makes the output more verbose but I find it helpful right now as I comb through all sorts of details as part of https://github.com/coreos/fedora-coreos-tracker/issues/1861. If we care about less verbose output, I'd prefer we keep `-x` but switched to having rpm-ostree buffer postprocess output and only dump it if it fails. --- minimal/initramfs.yaml | 1 + minimal/ostree.yaml | 1 + minimal/tmpfiles.yaml | 1 + standard/autoupdates.yaml | 3 +-- standard/generic-growfs.yaml | 2 +- standard/initramfs-full.yaml | 1 + standard/persistent-journal.yaml | 4 +++- 7 files changed, 9 insertions(+), 4 deletions(-) diff --git a/minimal/initramfs.yaml b/minimal/initramfs.yaml index fe4bbeb..a650e34 100644 --- a/minimal/initramfs.yaml +++ b/minimal/initramfs.yaml @@ -2,6 +2,7 @@ postprocess: - | #!/usr/bin/env bash + set -xeuo pipefail mkdir -p /usr/lib/dracut/dracut.conf.d cat > /usr/lib/dracut/dracut.conf.d/20-bootc-base.conf << 'EOF' # We want a generic image; hostonly makes no sense as part of a server side build diff --git a/minimal/ostree.yaml b/minimal/ostree.yaml index af49580..99e256e 100644 --- a/minimal/ostree.yaml +++ b/minimal/ostree.yaml @@ -5,6 +5,7 @@ postprocess: # Set up default root config - | #!/usr/bin/env bash + set -xeuo pipefail mkdir -p /usr/lib/ostree cat > /usr/lib/ostree/prepare-root.conf << EOF [composefs] diff --git a/minimal/tmpfiles.yaml b/minimal/tmpfiles.yaml index d37ef7f..0065b98 100644 --- a/minimal/tmpfiles.yaml +++ b/minimal/tmpfiles.yaml @@ -1,6 +1,7 @@ postprocess: - | #!/bin/bash + set -xeuo pipefail cat >/usr/lib/tmpfiles.d/bootc-base-rpmstate.conf <<'EOF' # Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=771713 d /var/lib/rpm-state 0755 - - - diff --git a/standard/autoupdates.yaml b/standard/autoupdates.yaml index a416699..04b35f3 100644 --- a/standard/autoupdates.yaml +++ b/standard/autoupdates.yaml @@ -2,8 +2,7 @@ postprocess: - | #!/usr/bin/env bash - set -euo pipefail + set -xeuo pipefail target=/usr/lib/systemd/system/default.target.wants mkdir -p $target - set -x ln -s ../bootc-fetch-apply-updates.timer $target diff --git a/standard/generic-growfs.yaml b/standard/generic-growfs.yaml index f64be92..5f4e0af 100644 --- a/standard/generic-growfs.yaml +++ b/standard/generic-growfs.yaml @@ -7,6 +7,6 @@ add-files: postprocess: - | #!/bin/bash - set -euo pipefail + set -xeuo pipefail mkdir -p /usr/lib/systemd/system/local-fs.target.wants ln -s ../bootc-generic-growpart.service /usr/lib/systemd/system/local-fs.target.wants/bootc-generic-growpart.service diff --git a/standard/initramfs-full.yaml b/standard/initramfs-full.yaml index b84a498..643a28c 100644 --- a/standard/initramfs-full.yaml +++ b/standard/initramfs-full.yaml @@ -2,6 +2,7 @@ postprocess: - | #!/usr/bin/env bash + set -xeuo pipefail mkdir -p /usr/lib/dracut/dracut.conf.d cat > /usr/lib/dracut/dracut.conf.d/30-bootc-standard.conf << 'EOF' add_dracutmodules+=" lvm crypt fips " diff --git a/standard/persistent-journal.yaml b/standard/persistent-journal.yaml index ccc6c5f..bb2d0c9 100644 --- a/standard/persistent-journal.yaml +++ b/standard/persistent-journal.yaml @@ -5,7 +5,9 @@ # rid of this once we move to sysusers and create the dir in the initrd. postprocess: - - | #!/bin/bash + - | + #!/bin/bash + set -xeuo pipefail mkdir -p /usr/lib/systemd/journald.conf.d/ cat >/usr/lib/systemd/journald.conf.d/10-centos-bootc-persistent.conf << EOF [Journal] From e3b9fbd6bafad97cd7f8aac25672490a9afe5ced Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 3 Jun 2025 22:05:06 -0400 Subject: [PATCH 078/697] bootc-base-imagectl: support injecting directories Right now, the expectation for adding unpackaged content in a custom base image flow is to do it after the main compose. The problem however is that sometimes you want that content to affect the main compose itself, so doing it afterwards is not sufficient. The primary use case for this is sysusers.d dropins where you need to make sure that sysusers in scriptlets don't pick UIDs/GIDs already reserved on target client systems. One way to work around this is to synthesize an RPM that ships the dropin, and then ensure that it somehow runs as early as possible in the transaction. This is doable but obviously quite a hack. Enable this instead by adding a generic `--add-dir` switch which then just translates to `ostree-layers` in the override manifest. The dnf equivalent would be to first install e.g. `filesystem` and `setup`, add files to the rootfs, and then install all the other packages. See also discussions in https://github.com/coreos/rpm-ostree/pull/5354. --- bootc-base-imagectl | 38 ++++++++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 545385f..fbe879a 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -22,20 +22,35 @@ def run_build_rootfs(args): else: manifest_path = f'/{MANIFESTDIR}/{args.manifest}.yaml' - tmp_manifest = None + rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] + + override_manifest = {} + tmp_ostree_repo = None if args.install: additional_pkgs = set(args.install) if len(additional_pkgs) > 0: - final_manifest = { - "include": manifest_path, - "packages": list(additional_pkgs), - } - tmp_manifest = tempfile.NamedTemporaryFile(mode='w', encoding='utf-8', suffix='.json', delete_on_close=False) - json.dump(final_manifest, tmp_manifest) - tmp_manifest.close() - manifest_path = tmp_manifest.name + override_manifest['packages'] = list(additional_pkgs) + if args.add_dir: + tmp_ostree_repo = tempfile.mkdtemp(dir='/var/tmp') + subprocess.check_call(['ostree', 'init', '--repo', tmp_ostree_repo, '--mode=bare']) + rpmostree_argv.append(f"--ostree-repo={tmp_ostree_repo}") + override_manifest['ostree-layers'] = [] + + for dir in args.add_dir: + base = os.path.basename(dir) + # capture output to hide commit digest printed + subprocess.check_output(['ostree', 'commit', '--repo', tmp_ostree_repo, '-b', f'overlay/{base}', dir, + '--owner-uid=0', '--owner-gid=0', '--no-xattrs', '--mode-ro-executables']) + override_manifest['ostree-layers'].append(f'overlay/{base}') + + tmp_manifest = None + if override_manifest: + override_manifest['include'] = manifest_path + tmp_manifest = tempfile.NamedTemporaryFile(mode='w', encoding='utf-8', suffix='.json', delete_on_close=False) + json.dump(override_manifest, tmp_manifest) + tmp_manifest.close() + manifest_path = tmp_manifest.name - rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] try: if args.cachedir != "": rpmostree_argv.append(f"--cachedir={args.cachedir}") @@ -66,6 +81,8 @@ def run_build_rootfs(args): finally: if tmp_manifest is not None: del tmp_manifest + if tmp_ostree_repo: + shutil.rmtree(tmp_ostree_repo) # Copy our own build configuration into the target if configured; # this is used for the first stage build. But by default *secondary* @@ -123,6 +140,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--manifest", help="Use the specified manifest", action='store', default='default') build_rootfs.add_argument("--install", help="Add a package", action='append', default=[], metavar='PACKAGE') build_rootfs.add_argument("--cachedir", help="Cache repo metadata and RPMs in specified directory", action='store', default='') + build_rootfs.add_argument("--add-dir", help='Copy dir contents into the target', action='append', default=[], metavar='DIR') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From e520c17c09431cc6a66e3eb6d39cb9bc37379e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 09:45:37 +0200 Subject: [PATCH 079/697] Simplify managerFilePatterns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 0742403..f5b8547 100644 --- a/renovate.json +++ b/renovate.json @@ -10,8 +10,7 @@ ".tekton/**" ], "managerFilePatterns": [ - "/\\.yaml$/", - "/\\.yml$/" + "/\\.ya?ml$/" ], "packageRules": [ { @@ -44,8 +43,7 @@ "Update 'REPOS_IMAGE' and 'BUILDER_IMAGE' in tekton files" ], "managerFilePatterns": [ - "/.tekton/.*\\.yaml$/", - "/.tekton/.*\\.yml$/" + "/.tekton/.*\\.ya?ml$/" ], "matchStrings": [ "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n", From b06288518c43f2eed752a0949efb306bfbc79978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 09:46:27 +0200 Subject: [PATCH 080/697] Use patch/build instead of minor/patch in 'versioningTemplate' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to the documentation 'build' can be used after 'major', 'minor' and 'patch' have been already used and a fourth version part is needed. On the other hand, it's only mandatory to use at least one of 'major', 'minor' or 'patch'. We are using 'patch' and 'build' in compose-images so this change is to make the versioning consistent among both projects. Signed-off-by: Miguel Martín --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index f5b8547..e7fb92b 100644 --- a/renovate.json +++ b/renovate.json @@ -49,7 +49,7 @@ "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n", "BUILDER_IMAGE=(?.*):(?.*)@(?.*)\\n" ], - "versioningTemplate": "regex:(?.*)-(?\\d{8})(\\.n)?\\.(?\\d)", + "versioningTemplate": "regex:(?.*)-(?\\d{8})(\\.n)?\\.(?\\d)", "datasourceTemplate": "docker" } ], From 7badbd218f961dbd31f76ba8a3ce1ddd4f11c4d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 10:31:36 +0200 Subject: [PATCH 081/697] Fix string pattern in 'matchPackageNames' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index e7fb92b..f422930 100644 --- a/renovate.json +++ b/renovate.json @@ -61,7 +61,7 @@ "packageRules": [ { "matchPackageNames": [ - "quay.io/bootc-devel/.*-compose" + "/quay.io\/bootc-devel\/fedora-bootc-.*-compose/" ], "automerge": true }, From 90ce69c71ff4f64bb8101e4eef96f74b384b8c3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 10:32:18 +0200 Subject: [PATCH 082/697] Group compose changes per Fedora version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Grouping compose changes per Fedora version will allow us to retrigger the builds separately in case of failure. Signed-off-by: Miguel Martín --- renovate.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/renovate.json b/renovate.json index f422930..8b618b1 100644 --- a/renovate.json +++ b/renovate.json @@ -65,6 +65,20 @@ ], "automerge": true }, + { + "matchPackageNames": [ + "/quay.io\/bootc-devel\/fedora-bootc-rawhide-compose/" + ], + "groupName": "Fedora rawhide compose dependencies", + "groupSlug": "fedora-rawhide-compose-dependencies" + }, + { + "matchPackageNames": [ + "/quay.io\/bootc-devel\/fedora-bootc-42-compose/" + ], + "groupName": "Fedora 42 compose dependencies", + "groupSlug": "fedora-42-compose-dependencies" + }, { "matchPackageNames": [ "quay.io/fedora/fedora" From 6f2eeb08d6f44af9aae7912f123be4119c1bce90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 10:34:54 +0200 Subject: [PATCH 083/697] Adjust konflux pipelines timeout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit An update of a compose image from a specific Fedora version triggers at least 4 builds: 'minimal', 'minimal-plus', 'standard' and 'iot'. We usually have 2 compose images updates (Fedora 42 and Rawhide) per day so up to 8 builds are triggered at the same time. As we don't seem to have a lot of resources in the Konflux cluster this leads to build failures because of timeouts (the default pipeline timeout is 1h). This change tries to mitigate this until we get more resources in the Konflux cluster. Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-iot-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-standard-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 ++ 16 files changed, 32 insertions(+) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 1b03aa8..c3e182e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -53,3 +53,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index bd48de5..ae0b0ec 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -50,3 +50,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index ff3e4a7..c56a3bf 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -51,3 +51,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 72228dd..f0b7d22 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,3 +48,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 3549dd3..42e05fe 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -51,3 +51,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 3d713a3..f034496 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -48,3 +48,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e6a2f6c..78e1dae 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,3 +51,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1918706..642d619 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -48,3 +48,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 778a7b4..91ddba9 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -53,3 +53,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index d60df78..6494058 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -50,3 +50,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 7d1df72..2f0c29d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -51,3 +51,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 83bbeee..002f380 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,3 +48,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2f945c2..ad06463 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -51,3 +51,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 7d14eb0..5e62339 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -48,3 +48,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 051e42e..dec7bc9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,3 +51,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index c94ccf7..2000bda 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -48,3 +48,5 @@ spec: - name: kind value: pipeline resolver: bundles + timeouts: + pipeline: 6h From 0b558b03785e362a261ffa1e6a3794c069bb3e31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 11:03:13 +0200 Subject: [PATCH 084/697] Use the compose image with the latest Fedora 42 testing updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index c3e182e..87af99e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index ae0b0ec..72f8e6e 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index c56a3bf..3e32f7e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index f0b7d22..8471604 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 42e05fe..9325dcf 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index f034496..21c0099 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 78e1dae..c1e0a29 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 642d619..c41332b 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-20250409.0@sha256:c72e43a4baf6f744b5b87f546d61d9854aa8a6f3b754f94dc456dba76786addf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From e05375b538fa19419b5a9dad50a1b92b644c3fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 16:58:55 +0200 Subject: [PATCH 085/697] Update Rawhide compose reference in tekton files --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 91ddba9..0607756 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 6494058..3f23e97 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2f0c29d..143c586 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 002f380..514ff95 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ad06463..335d3ed 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5e62339..2406282 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index dec7bc9..c4c1d18 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2000bda..5a9332d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250520.n.0@sha256:38ed31949d03f6531a9599d3ca8ee35f5e35a2b353276f2be666e9a9d8eae7fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 5accefc8adc375be38a6ec4afc0b710f3bea033e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 5 Jun 2025 09:10:21 +0000 Subject: [PATCH 086/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250605.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 0607756..e63b347 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 3f23e97..aa0c394 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 143c586..ba5e02a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 514ff95..962b268 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 335d3ed..e0f329a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 2406282..0b71c58 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c4c1d18..8114c11 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 5a9332d..0a684b5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250603.n.0@sha256:45131c2e29f5c84396ce15d1f324ef416b981591289a21b35bd96fb4fbffbe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From f3259627f4a268ecc8bcef7b40ee3f1dd4680bf7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 5 Jun 2025 11:09:09 +0000 Subject: [PATCH 087/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250605.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 87af99e..c842da6 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 72f8e6e..49efc7e 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 3e32f7e..5e8446a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 8471604..641bc61 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 9325dcf..c49c4d4 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 21c0099..65d6442 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index c1e0a29..5369800 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index c41332b..bc8a7b5 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250604.0@sha256:3a7866db58d3b74d2e9c99317779d6adc3e4e5f38448e4549c4a30bfc7e39b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From a72d41e21abbed816c9729dcf6089f1a03225c9c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 5 Jun 2025 14:14:04 +0000 Subject: [PATCH 088/697] chore(deps): update all dependencies Signed-off-by: Platform Engineering Bot --- .gitlab-ci.yml | 2 +- .pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9bbf195..ae2b1a2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ variables: .build-image: stage: build - image: quay.io/buildah/stable:v1.38.0 + image: quay.io/buildah/stable:v1.40.0 needs: [] build-minimal: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0934aaf..e955059 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ --- repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace From 9181f9ca55e4842d5227ff8549aca327819ea229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 5 Jun 2025 16:22:03 +0200 Subject: [PATCH 089/697] Update konflux pipeline reference --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index c842da6..604973a 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -47,7 +47,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 49efc7e..8538467 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -44,7 +44,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 5e8446a..28225ed 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 641bc61..dcfb183 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c49c4d4..d24323c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 65d6442..5b5ae01 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 5369800..d8a13fc 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index bc8a7b5..504d1c8 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index e63b347..44fef97 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -47,7 +47,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index aa0c394..454b6b0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -44,7 +44,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ba5e02a..200302a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 962b268..2d68b91 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e0f329a..a77d46b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 0b71c58..55af26f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 8114c11..2d68060 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0a684b5..4caf9b3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2474cc2cd84db2bc0abe595d35a878d01af3bf8783aac0ccc252c9a7a00d8271 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 748c6406f77e0039ab8219a4760a0c73ac0a8f97 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 9 Jun 2025 09:09:32 +0000 Subject: [PATCH 090/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250609.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 44fef97..d81d9e6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 454b6b0..ccfe918 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 200302a..2b022ca 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 2d68b91..5226111 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a77d46b..cf2f37d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 55af26f..1db04ce 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 2d68060..6f63262 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 4caf9b3..14ea61f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250605.n.0@sha256:2a009abfa8f6c0452d2092321d9fffb49d4a3c2416dd67a011ac41e1d59a6edc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From d75fe40ed6c682a8a72e569142b2c1f7136ac04d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 9 Jun 2025 10:11:10 +0000 Subject: [PATCH 091/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250606.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 604973a..bea6646 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 8538467..a52c528 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 28225ed..1d5279c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index dcfb183..1e131a0 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index d24323c..07ba79d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 5b5ae01..ab99a91 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d8a13fc..99e098c 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 504d1c8..da0347d 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250605.0@sha256:de19c1ead45bc59110be090c56083f3218bd35f3b4563276e663760c279561da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From fa9f15e87eb6901bd057d9af6ccefba2e3c9e768 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 9 Jun 2025 13:48:58 -0400 Subject: [PATCH 092/697] fedora-42: update repos list Fedora 42 is GA now so use GA repos. This is the legacy Pungi path, but one should be able to test the legacy paths locally too. Pungi overrides repos so it doesn't hit this. --- fedora-42.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fedora-42.yaml b/fedora-42.yaml index 26fed96..34c6c1d 100644 --- a/fedora-42.yaml +++ b/fedora-42.yaml @@ -2,5 +2,6 @@ # will be removed in the future. releasever: 42 repos: - - fedora-devel + - fedora + - fedora-updates include: fedora-bootc.yaml From 39a631218f77f7b3a3af858a5d42413e20d6a310 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 9 Jun 2025 13:51:00 -0400 Subject: [PATCH 093/697] Install bootc-base-imagectl in Pungi path Right now, one can't use the official fedora-bootc images for the custom base image flow because it doesn't actually ship `bootc-base-imagectl`. This will be fixed by the move to Konflux, but it's not clear when that will happen. Given how trivial it is to do, let's just ship it in the image for now. Closes: https://gitlab.com/fedora/bootc/base-images/-/issues/44 --- finalize.d/01-pungi-install-manifests.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 finalize.d/01-pungi-install-manifests.sh diff --git a/finalize.d/01-pungi-install-manifests.sh b/finalize.d/01-pungi-install-manifests.sh new file mode 100755 index 0000000..8a290fe --- /dev/null +++ b/finalize.d/01-pungi-install-manifests.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -xeuo pipefail + +# This is used in the legacy Pungi path. It won't get run in the +# container-native path since install-manifests doesn't copy this script itself +# into usr/share/doc. +target_rootfs=$(pwd) +cd "$RPMOSTREE_WORKDIR" +./install-manifests "$target_rootfs"/usr/share/doc/bootc-base-imagectl/manifests +install -m 0755 -t "$target_rootfs"/usr/libexec bootc-base-imagectl From 90bff25939fc9d9705805694cdec9f1fc7dc92d0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 10 Jun 2025 09:09:50 +0000 Subject: [PATCH 094/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose:fedora-rawhide-20250609.n.0 docker digest to 2af59ca Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d81d9e6..61153fe 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index ccfe918..08b35e1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2b022ca..39b86f8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5226111..a7af2df 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index cf2f37d..50b3091 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 1db04ce..7ec87fd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 6f63262..b97d1a0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 14ea61f..b82f09f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:cb6ab87df1b3df5f7cc1187427b6bab6c5547ec1d6d81827617039a73e72af2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 6fc0f812c530df986c0922779e31811756f46ccc Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 10 Jun 2025 09:10:24 +0000 Subject: [PATCH 095/697] chore(deps): update quay.io/buildah/stable docker tag to v1.40.1 Signed-off-by: Platform Engineering Bot --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ae2b1a2..9adbe3f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ variables: .build-image: stage: build - image: quay.io/buildah/stable:v1.40.0 + image: quay.io/buildah/stable:v1.40.1 needs: [] build-minimal: From da4799c2b17015a5f9be17bec5b5297b28720089 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 11 Jun 2025 05:31:37 +0000 Subject: [PATCH 096/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250610.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index bea6646..2e182c3 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index a52c528..8c370c2 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 1d5279c..5334459 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 1e131a0..8057436 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 07ba79d..c3add5d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index ab99a91..884f38e 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 99e098c..aae3d81 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index da0347d..f0355a1 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250606.0@sha256:e5221d61ef263c5991c3447c5e3d04b1658e028ae9670d0776e356bab045788b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 70d53b382c8752fd9cd5e35dcfa94b76fc4142fa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 11 Jun 2025 05:32:01 +0000 Subject: [PATCH 097/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250610.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 61153fe..d9a5868 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 08b35e1..e47d9b5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 39b86f8..0c1532b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a7af2df..43c33b0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 50b3091..dc8116c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 7ec87fd..e85bdb5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b97d1a0..ef2ef09 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b82f09f..245a6ec 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250609.n.0@sha256:2af59ca1f4577ac9ebeb67ebef09867701d7ae6eaf0ad0cd7ff705deba1cbfcc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From ee03dec7485d81592ad569e53904d25713b25810 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 12 Jun 2025 14:38:24 +0000 Subject: [PATCH 098/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250612.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2e182c3..fc36733 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 8c370c2..0ef4a4b 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 5334459..a7c42db 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 8057436..282b0b1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c3add5d..0fc8dde 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 884f38e..3b96ef2 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index aae3d81..31c588e 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index f0355a1..53fde4f 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250610.0@sha256:ad045986a93f76013d9b40c0929d5ffd106d30569890e2c9e115bc44d58f08d7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 8372951aa98b1af9dd323247321a2c3a5d24fd62 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 12 Jun 2025 15:32:29 -0400 Subject: [PATCH 099/697] bootc-base-imagectl: support passing symlink to --add-dir This is the setup in RHCOS, where some of the overlays are actually symlinks to overlays in the f-c-c submodule. --- bootc-base-imagectl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index fbe879a..542ea20 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -38,8 +38,9 @@ def run_build_rootfs(args): for dir in args.add_dir: base = os.path.basename(dir) + abs = os.path.realpath(dir) # capture output to hide commit digest printed - subprocess.check_output(['ostree', 'commit', '--repo', tmp_ostree_repo, '-b', f'overlay/{base}', dir, + subprocess.check_output(['ostree', 'commit', '--repo', tmp_ostree_repo, '-b', f'overlay/{base}', abs, '--owner-uid=0', '--owner-gid=0', '--no-xattrs', '--mode-ro-executables']) override_manifest['ostree-layers'].append(f'overlay/{base}') From 9d39775e6a3b2837d0831872c2ced37e68ee0605 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 12 Jun 2025 15:33:55 -0400 Subject: [PATCH 100/697] bootc-base-imagectl: be compatible with Python 3.9 RHEL 9 ships Python 3.9 which doesn't seem to know about `delete_on_close`. Just use `delete` instead. --- bootc-base-imagectl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 542ea20..b9f95b2 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -47,7 +47,7 @@ def run_build_rootfs(args): tmp_manifest = None if override_manifest: override_manifest['include'] = manifest_path - tmp_manifest = tempfile.NamedTemporaryFile(mode='w', encoding='utf-8', suffix='.json', delete_on_close=False) + tmp_manifest = tempfile.NamedTemporaryFile(mode='w', encoding='utf-8', suffix='.json', delete=False) json.dump(override_manifest, tmp_manifest) tmp_manifest.close() manifest_path = tmp_manifest.name @@ -81,7 +81,7 @@ def run_build_rootfs(args): sys.exit(1) finally: if tmp_manifest is not None: - del tmp_manifest + os.unlink(tmp_manifest.name) if tmp_ostree_repo: shutil.rmtree(tmp_ostree_repo) From 877bf314876df6d38b260d8094b1dcb0fa7156b9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 16 Jun 2025 00:08:18 +0000 Subject: [PATCH 101/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250613.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index fc36733..3c24696 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0ef4a4b..c89528b 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a7c42db..2559aa1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 282b0b1..a49eae6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 0fc8dde..a629fe4 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 3b96ef2..4134298 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 31c588e..970ed34 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 53fde4f..ce65621 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250612.0@sha256:754e51058f55270d479ccc4829fcc384ba5ce2d41a835d28fa1f9226ef2c651f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From a3c83bd895dd74370195a622645217d0d5006492 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 16 Jun 2025 14:02:07 -0400 Subject: [PATCH 102/697] passwd/group: order by UID/GID This makes it easier to diff against other definitions of this file ordered the same deterministic way. --- minimal/group | 40 +++++++++++++++++++------------------ minimal/passwd | 54 ++++++++++++++++++++++++++------------------------ 2 files changed, 49 insertions(+), 45 deletions(-) diff --git a/minimal/group b/minimal/group index c4c44b7..5d5326c 100644 --- a/minimal/group +++ b/minimal/group @@ -1,3 +1,5 @@ +# keep sorted by GID (e.g. pass through `sort -t: --key 3 -g`) + root:x:0: bin:x:1: daemon:x:2: @@ -15,31 +17,31 @@ man:x:15: dialout:x:18: floppy:x:19: games:x:20: +rpcuser:x:29: tape:x:33: video:x:39: +dip:x:40: ftp:x:50: lock:x:54: audio:x:63: +tcpdump:x:72: nobody:x:99: users:x:100: -ssh_keys:x:999: -systemd-journal:x:190: -polkitd:x:998: -etcd:x:997: -dip:x:40: -cgred:x:996: -avahi-autoipd:x:170: -sssd:x:993: -dockerroot:x:986: -rpcuser:x:29: -nfsnobody:x:65534: -kube:x:994: -chrony:x:992: -tcpdump:x:72: -ceph:x:167: input:x:104: -systemd-timesync:x:991: -systemd-network:x:990: -systemd-resolve:x:989: -systemd-bus-proxy:x:988: +ceph:x:167: +avahi-autoipd:x:170: +systemd-journal:x:190: +dockerroot:x:986: cockpit-ws:x:987: +systemd-bus-proxy:x:988: +systemd-resolve:x:989: +systemd-network:x:990: +systemd-timesync:x:991: +chrony:x:992: +sssd:x:993: +kube:x:994: +cgred:x:996: +etcd:x:997: +polkitd:x:998: +ssh_keys:x:999: +nfsnobody:x:65534: diff --git a/minimal/passwd b/minimal/passwd index 9c3b4b2..bf8fc7c 100644 --- a/minimal/passwd +++ b/minimal/passwd @@ -1,32 +1,34 @@ -adm:x:3:4:adm:/var/adm:/usr/sbin/nologin -avahi-autoipd:x:170:170:Avahi IPv4LL Stack:/var/lib/avahi-autoipd:/usr/sbin/nologin +# keep sorted by UID (e.g. pass through `sort -t: --key 3 -g`) + +root:x:0:0:Super User:/root:/bin/bash bin:x:1:1:bin:/bin:/usr/sbin/nologin -ceph:x:167:167:Ceph daemons:/var/lib/ceph:/usr/sbin/nologin -chrony:x:994:992::/var/lib/chrony:/usr/sbin/nologin -cockpit-ws:x:988:987:User for cockpit-ws:/:/usr/sbin/nologin daemon:x:2:2:daemon:/sbin:/usr/sbin/nologin +adm:x:3:4:adm:/var/adm:/usr/sbin/nologin +lp:x:4:7:lp:/var/spool/lpd:/usr/sbin/nologin +sync:x:5:0:sync:/sbin:/bin/sync +shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown +halt:x:7:0:halt:/sbin:/sbin/halt +mail:x:8:12:mail:/var/spool/mail:/usr/sbin/nologin +operator:x:11:0:operator:/root:/usr/sbin/nologin +games:x:12:100:games:/usr/games:/usr/sbin/nologin +ftp:x:14:50:FTP User:/var/ftp:/usr/sbin/nologin +rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/usr/sbin/nologin +rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/usr/sbin/nologin +tcpdump:x:72:72::/:/usr/sbin/nologin +sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/usr/sbin/nologin dbus:x:81:81:System Message Bus:/:/usr/sbin/nologin +nobody:x:99:99:Kernel Overflow User:/:/usr/sbin/nologin +ceph:x:167:167:Ceph daemons:/var/lib/ceph:/usr/sbin/nologin +avahi-autoipd:x:170:170:Avahi IPv4LL Stack:/var/lib/avahi-autoipd:/usr/sbin/nologin +cockpit-ws:x:988:987:User for cockpit-ws:/:/usr/sbin/nologin +systemd-bus-proxy:x:989:988:systemd Bus Proxy:/:/usr/sbin/nologin +systemd-resolve:x:990:989:systemd Resolver:/:/usr/sbin/nologin +systemd-network:x:991:990:systemd Network Management:/:/usr/sbin/nologin +systemd-timesync:x:993:991:systemd Time Synchronization:/:/usr/sbin/nologin +chrony:x:994:992::/var/lib/chrony:/usr/sbin/nologin +sssd:x:995:993:User for sssd:/run/sssd:/usr/sbin/nologin +kube:x:996:994:Kubernetes user:/:/usr/sbin/nologin dockerroot:x:997:986:Docker User:/var/lib/docker:/usr/sbin/nologin etcd:x:998:997:etcd user:/var/lib/etcd:/usr/sbin/nologin -ftp:x:14:50:FTP User:/var/ftp:/usr/sbin/nologin -games:x:12:100:games:/usr/games:/usr/sbin/nologin -halt:x:7:0:halt:/sbin:/sbin/halt -kube:x:996:994:Kubernetes user:/:/usr/sbin/nologin -lp:x:4:7:lp:/var/spool/lpd:/usr/sbin/nologin -mail:x:8:12:mail:/var/spool/mail:/usr/sbin/nologin -nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/usr/sbin/nologin -nobody:x:99:99:Kernel Overflow User:/:/usr/sbin/nologin -operator:x:11:0:operator:/root:/usr/sbin/nologin polkitd:x:999:998:User for polkitd:/:/usr/sbin/nologin -root:x:0:0:Super User:/root:/bin/bash -rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/usr/sbin/nologin -rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/usr/sbin/nologin -shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown -sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/usr/sbin/nologin -sssd:x:995:993:User for sssd:/run/sssd:/usr/sbin/nologin -sync:x:5:0:sync:/sbin:/bin/sync -systemd-bus-proxy:x:989:988:systemd Bus Proxy:/:/usr/sbin/nologin -systemd-network:x:991:990:systemd Network Management:/:/usr/sbin/nologin -systemd-resolve:x:990:989:systemd Resolver:/:/usr/sbin/nologin -systemd-timesync:x:993:991:systemd Time Synchronization:/:/usr/sbin/nologin -tcpdump:x:72:72::/:/usr/sbin/nologin +nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/usr/sbin/nologin From f4df7f6e15053ba669b9823c10bf025aa234ece0 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 16 Jun 2025 14:07:24 -0400 Subject: [PATCH 103/697] bootc-base-imagectl: add --no-docs This just connects to the `documentation` treefile key currently but is essentially equivalent to dnf's `--no-docs` flag. --- bootc-base-imagectl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index b9f95b2..33dea5f 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -43,6 +43,8 @@ def run_build_rootfs(args): subprocess.check_output(['ostree', 'commit', '--repo', tmp_ostree_repo, '-b', f'overlay/{base}', abs, '--owner-uid=0', '--owner-gid=0', '--no-xattrs', '--mode-ro-executables']) override_manifest['ostree-layers'].append(f'overlay/{base}') + if args.no_docs: + override_manifest['documentation'] = False tmp_manifest = None if override_manifest: @@ -142,6 +144,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--install", help="Add a package", action='append', default=[], metavar='PACKAGE') build_rootfs.add_argument("--cachedir", help="Cache repo metadata and RPMs in specified directory", action='store', default='') build_rootfs.add_argument("--add-dir", help='Copy dir contents into the target', action='append', default=[], metavar='DIR') + build_rootfs.add_argument("--no-docs", help="Don't install documentation", action='store_true') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From a0d499a91c4b1a12d5a2843828b381e26100ed96 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 17 Jun 2025 11:39:18 +0000 Subject: [PATCH 104/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250617.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3c24696..8ed6d8f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c89528b..92aa5c6 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 2559aa1..8334800 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index a49eae6..4d08d1a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index a629fe4..bad3391 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 4134298..8156db8 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 970ed34..460c5e8 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index ce65621..bb8f906 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250613.0@sha256:7991feb2ec2470c1b825a72bc6fb8bbe5fda3f3620b1a80cc257d82ad72e8af8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 58570a1e60be25ed41578baa930f3a98241042df Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 8 May 2025 08:52:21 -0400 Subject: [PATCH 105/697] Move python3-libdnf5 to fedora only ref https://gitlab.com/redhat/centos-stream/containers/bootc/-/merge_requests/558#note_2492110138 Signed-off-by: Colin Walters --- fedora-standard.yaml | 4 ++++ standard/manifest.yaml | 2 -- tests/rootfs/cases/fedora-only | 13 +++++++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100755 tests/rootfs/cases/fedora-only diff --git a/fedora-standard.yaml b/fedora-standard.yaml index 73eeb5d..4dd7d72 100644 --- a/fedora-standard.yaml +++ b/fedora-standard.yaml @@ -1,3 +1,7 @@ include: - fedora-includes/generic.yaml - standard/manifest.yaml + +packages: + # Make Ansible "package" builtin work by default + - python3-libdnf5 diff --git a/standard/manifest.yaml b/standard/manifest.yaml index 2016cc2..001235c 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -42,8 +42,6 @@ packages: - zram-generator # This one is in Python so isn't in FCOS, but we can safely add it here. - sos - # Make Ansible "package" builtin work by default - - python3-libdnf5 # Make Ansible "package_facts" builtin work by default - python3-rpm diff --git a/tests/rootfs/cases/fedora-only b/tests/rootfs/cases/fedora-only new file mode 100755 index 0000000..ab736c5 --- /dev/null +++ b/tests/rootfs/cases/fedora-only @@ -0,0 +1,13 @@ +#!/bin/bash +set -xeuo pipefail +. /usr/lib/os-release +case "${ID}" in + fedora) + # https://gitlab.com/fedora/bootc/base-images/-/merge_requests/172 + if rpm -q python3 &>/dev/null; then + rpm -q python3-libdnf5 + fi + ;; + *) + ;; +esac From 040f6319f59372858ac70ae9b43b08b18060fbfd Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 16 Jun 2025 15:35:27 -0400 Subject: [PATCH 106/697] Drop `fedora-` prefix from canonical manifests It's confusing right now how the manifest names differ across fedora-bootc, centos-bootc and rhel-bootc. Both rhel-bootc and centos-bootc only use "bare" names like `minimal`, and `standard`, while fedora-bootc prefixes everything with `fedora-`. For FCOS/SCOS/RHCOS, it would be beneficial to maintain the same naming across all of those. Let's just match the naming here to the "bare" version. But add symlinks so that we don't break the old names (but note that being symlinks, they will no longer show up in `bootc-base-imagectl list`). --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 6 +++--- .tekton/fedora-bootc-42-iot-push.yaml | 6 +++--- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 6 +++--- .tekton/fedora-bootc-rawhide-iot-push.yaml | 6 +++--- .../fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- fedora-iot.yaml | 5 +---- fedora-minimal-plus.yaml | 4 +--- fedora-minimal.yaml | 4 +--- fedora-standard.yaml | 8 +------- install-manifests | 4 +++- iot.yaml | 4 ++++ minimal-plus.yaml | 3 +++ minimal.yaml | 3 +++ standard.yaml | 7 +++++++ 25 files changed, 48 insertions(+), 42 deletions(-) mode change 100644 => 120000 fedora-iot.yaml mode change 100644 => 120000 fedora-minimal-plus.yaml mode change 100644 => 120000 fedora-minimal.yaml mode change 100644 => 120000 fedora-standard.yaml create mode 100644 iot.yaml create mode 100644 minimal-plus.yaml create mode 100644 minimal.yaml create mode 100644 standard.yaml diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 8ed6d8f..bc523bc 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 92aa5c6..8884b05 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -8,9 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 8334800..5f96be7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 4d08d1a..c9c9b8b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index bad3391..5bdd22b 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 8156db8..4722843 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 460c5e8..e542736 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index bb8f906..7389e50 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d9a5868..90df2d5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index e47d9b5..80a2008 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -8,9 +8,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./fedora-minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./fedora-minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || + == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() + || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0c1532b..965ee86 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 43c33b0..6dfb20c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index dc8116c..72eee9f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e85bdb5..bfe7734 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ef2ef09..1e5b00b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 245a6ec..d41a800 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./fedora-standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/fedora-iot.yaml b/fedora-iot.yaml deleted file mode 100644 index 27aabce..0000000 --- a/fedora-iot.yaml +++ /dev/null @@ -1,4 +0,0 @@ -include: - - iot/manifest.yaml - - fedora-minimal-plus.yaml - diff --git a/fedora-iot.yaml b/fedora-iot.yaml new file mode 120000 index 0000000..015e654 --- /dev/null +++ b/fedora-iot.yaml @@ -0,0 +1 @@ +iot.yaml \ No newline at end of file diff --git a/fedora-minimal-plus.yaml b/fedora-minimal-plus.yaml deleted file mode 100644 index a987b38..0000000 --- a/fedora-minimal-plus.yaml +++ /dev/null @@ -1,3 +0,0 @@ -include: - - fedora-includes/generic.yaml - - minimal-plus/manifest.yaml diff --git a/fedora-minimal-plus.yaml b/fedora-minimal-plus.yaml new file mode 120000 index 0000000..15e1815 --- /dev/null +++ b/fedora-minimal-plus.yaml @@ -0,0 +1 @@ +minimal-plus.yaml \ No newline at end of file diff --git a/fedora-minimal.yaml b/fedora-minimal.yaml deleted file mode 100644 index a6b3b23..0000000 --- a/fedora-minimal.yaml +++ /dev/null @@ -1,3 +0,0 @@ -include: - - fedora-includes/generic.yaml - - minimal/manifest.yaml diff --git a/fedora-minimal.yaml b/fedora-minimal.yaml new file mode 120000 index 0000000..57d7672 --- /dev/null +++ b/fedora-minimal.yaml @@ -0,0 +1 @@ +minimal.yaml \ No newline at end of file diff --git a/fedora-standard.yaml b/fedora-standard.yaml deleted file mode 100644 index 4dd7d72..0000000 --- a/fedora-standard.yaml +++ /dev/null @@ -1,7 +0,0 @@ -include: - - fedora-includes/generic.yaml - - standard/manifest.yaml - -packages: - # Make Ansible "package" builtin work by default - - python3-libdnf5 diff --git a/fedora-standard.yaml b/fedora-standard.yaml new file mode 120000 index 0000000..55bfa44 --- /dev/null +++ b/fedora-standard.yaml @@ -0,0 +1 @@ +standard.yaml \ No newline at end of file diff --git a/install-manifests b/install-manifests index 93d878c..88e75d7 100755 --- a/install-manifests +++ b/install-manifests @@ -7,7 +7,9 @@ mkdir -p "$manifestdir/" for image in minimal standard minimal-plus iot; do # Embed the generic defaults cp -a $image $manifestdir/ - # And the Fedora-specific tweaks + # And the top-level Fedora-specific manifests + cp -a $image.yaml $manifestdir/ + # And the legacy `fedora-` prefixed names cp -a fedora-$image.yaml $manifestdir/ done # Set the default diff --git a/iot.yaml b/iot.yaml new file mode 100644 index 0000000..27aabce --- /dev/null +++ b/iot.yaml @@ -0,0 +1,4 @@ +include: + - iot/manifest.yaml + - fedora-minimal-plus.yaml + diff --git a/minimal-plus.yaml b/minimal-plus.yaml new file mode 100644 index 0000000..a987b38 --- /dev/null +++ b/minimal-plus.yaml @@ -0,0 +1,3 @@ +include: + - fedora-includes/generic.yaml + - minimal-plus/manifest.yaml diff --git a/minimal.yaml b/minimal.yaml new file mode 100644 index 0000000..a6b3b23 --- /dev/null +++ b/minimal.yaml @@ -0,0 +1,3 @@ +include: + - fedora-includes/generic.yaml + - minimal/manifest.yaml diff --git a/standard.yaml b/standard.yaml new file mode 100644 index 0000000..4dd7d72 --- /dev/null +++ b/standard.yaml @@ -0,0 +1,7 @@ +include: + - fedora-includes/generic.yaml + - standard/manifest.yaml + +packages: + # Make Ansible "package" builtin work by default + - python3-libdnf5 From c2ff52a7cf18e7efc510c94f56074fbd655bc609 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 17 Jun 2025 14:57:25 -0400 Subject: [PATCH 107/697] bootc-base-imagectl: simplify manifest path logic The `if os.path.isdir(args.manifest)` bit dates from the introduction of this script, but doesn't really work. I suspect the intent here was to abstract over some manifests being top-level YAML files and others being directories). Except that: 1. The script didn't actually check the right path. It's checking `$PWD/{args.manifest}` instead of `$MANIFESTDIR/{args.manifest}`. 2. `list` doesn't have the equivalent logic to look for `manifest.yaml` files in subdirectories. 3. Nowadays, there is both a e.g. `standard.yaml` _and_ a `standard/manifest.yaml` directory. The established semantic there AIUI is that the top-level manifests are opinionated for a specific OS (Fedora/CentOS/RHEL), whereas the directories are shared across all of those. So let's just nuke support for the directory path. --- bootc-base-imagectl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index fbe879a..f2dffae 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -17,10 +17,7 @@ def run_build_rootfs(args): Regenerates a base image using a build configuration. """ target = args.target - if os.path.isdir(args.manifest): - manifest_path = os.path.join(f'/{MANIFESTDIR}', args.manifest, 'manifest.yaml') - else: - manifest_path = f'/{MANIFESTDIR}/{args.manifest}.yaml' + manifest_path = f'/{MANIFESTDIR}/{args.manifest}.yaml' rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] From 87eae9910eb7f5118feed6416ba1582c10d63e68 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 17 Jun 2025 15:07:23 -0400 Subject: [PATCH 108/697] bootc-base-imagectl: support hidden manifests, hide minimal-plus We don't currently want the minimal-plus target to be user-facing. It's intended only for other Fedora variants. Let's support "hidden" manifests by having their names end in `.hidden.yaml`. Then, make `minimal-plus` hidden. I considered instead having them start with `.` to match well-established semantics, but I don't like either that this hides them from an `ls` in the git repo (or even with `-a`, puts them higher up whereas I want it to be close to `minimal.yaml`). I also considered leveraging the existing symlink hiding semantics, but it also felt awkward to rename a file and add a symlink to it just for the purpose of hiding it. --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .../fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- bootc-base-imagectl | 9 +++++++-- fedora-minimal-plus.yaml | 2 +- install-manifests | 6 +++++- minimal-plus.yaml => minimal-plus.hidden.yaml | 0 12 files changed, 21 insertions(+), 12 deletions(-) rename minimal-plus.yaml => minimal-plus.hidden.yaml (100%) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index bc523bc..866fe38 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 8884b05..20e129d 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() ) diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 5f96be7..1071297 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index c9c9b8b..5d46709 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 90df2d5..6fdd607 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -10,7 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 80a2008..cc07c7b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.yaml".pathChanged() || "./minimal-plus/***".pathChanged() + || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() ) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 965ee86..9db25d1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6dfb20c..403e24c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -8,7 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./minimal-plus.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() + == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() ) creationTimestamp: null diff --git a/bootc-base-imagectl b/bootc-base-imagectl index f2dffae..4cdcc1e 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -17,7 +17,12 @@ def run_build_rootfs(args): Regenerates a base image using a build configuration. """ target = args.target - manifest_path = f'/{MANIFESTDIR}/{args.manifest}.yaml' + for fn in [f'{args.manifest}.yaml', f'{args.manifest}.hidden.yaml']: + manifest_path = f'/{MANIFESTDIR}/{fn}' + if os.path.exists(manifest_path): + break + else: + raise Exception(f"manifest not found: {args.manifest}") rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] @@ -116,7 +121,7 @@ def run_list(args): d = '/' + MANIFESTDIR for ent in sorted(os.listdir(d)): name, ext = os.path.splitext(ent) - if ext != '.yaml': + if ext != '.yaml' or name.endswith('.hidden'): continue fullpath = os.path.join(d, ent) if os.path.islink(fullpath): diff --git a/fedora-minimal-plus.yaml b/fedora-minimal-plus.yaml index 15e1815..a1f9a23 120000 --- a/fedora-minimal-plus.yaml +++ b/fedora-minimal-plus.yaml @@ -1 +1 @@ -minimal-plus.yaml \ No newline at end of file +minimal-plus.hidden.yaml \ No newline at end of file diff --git a/install-manifests b/install-manifests index 88e75d7..f36a442 100755 --- a/install-manifests +++ b/install-manifests @@ -8,7 +8,11 @@ for image in minimal standard minimal-plus iot; do # Embed the generic defaults cp -a $image $manifestdir/ # And the top-level Fedora-specific manifests - cp -a $image.yaml $manifestdir/ + if [ -f $image.hidden.yaml ]; then + cp -a $image.hidden.yaml $manifestdir/ + else + cp -a $image.yaml $manifestdir/ + fi # And the legacy `fedora-` prefixed names cp -a fedora-$image.yaml $manifestdir/ done diff --git a/minimal-plus.yaml b/minimal-plus.hidden.yaml similarity index 100% rename from minimal-plus.yaml rename to minimal-plus.hidden.yaml From cc0cb6f4fde38a5ce12276bfa9ea75af01ac7b9d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Jun 2025 06:07:20 +0000 Subject: [PATCH 109/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250619.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 866fe38..453f6a4 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 20e129d..a11e220 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 1071297..d199467 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 5d46709..d984139 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 5bdd22b..22e69db 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 4722843..9411e1f 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e542736..0ac6a16 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 7389e50..8a4be6e 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250617.0@sha256:bc6641635aede632ae6a8fe7e6811f7776f2329c5c815f34f3069e12a9ed10e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 73c91c7c261db1b42a890845e7d69120451243ff Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Jun 2025 09:35:22 +0000 Subject: [PATCH 110/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250619.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 6fdd607..750f2ed 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index cc07c7b..6011e84 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 9db25d1..541e27e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 403e24c..3fa2056 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 72eee9f..1e55279 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index bfe7734..980cb70 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1e5b00b..2b98443 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index d41a800..9137d6d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250610.n.0@sha256:eac31e6c35016902d5f362128c346dc4ca6efe9eb27c38e35660f2a40572ecc8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 72209c6c1c5169de0bf48bc4e351dee9a7c2b5b9 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 19 Jun 2025 20:01:28 -0400 Subject: [PATCH 111/697] bootc-base-imagectl: sort imports --- bootc-base-imagectl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 117b473..6fe863b 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -1,12 +1,12 @@ #!/usr/bin/env python3 +import argparse +import json import os import os.path as path -import subprocess import shutil import stat -import json -import argparse +import subprocess import sys import tempfile From 7229926c020710a198bdf7b64ce28177ebd4f548 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 19 Jun 2025 20:01:50 -0400 Subject: [PATCH 112/697] bootc-base-imagectl: support `--install` packages with spaces Those are more like package requests than package names, so things like `foo > 1.0` should be supported. Pass the install arguments through `shlex.quote`. --- bootc-base-imagectl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 6fe863b..84e49df 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -4,6 +4,7 @@ import argparse import json import os import os.path as path +import shlex import shutil import stat import subprocess @@ -29,7 +30,7 @@ def run_build_rootfs(args): override_manifest = {} tmp_ostree_repo = None if args.install: - additional_pkgs = set(args.install) + additional_pkgs = [shlex.quote(p) for p in set(args.install)] if len(additional_pkgs) > 0: override_manifest['packages'] = list(additional_pkgs) if args.add_dir: From 489bcd8ca1c0a31c5087bb7559276b34179832be Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Fri, 20 Jun 2025 15:24:46 -0400 Subject: [PATCH 113/697] minimal/basic-fixes: redirect sed commands stdout > /dev/null Not sure why but when you try to build c9s with rpm-ostree from git main the change in [1] causes the sed commands here to exit with a weird error: ``` sed: couldn't close stdout: Bad file descriptor ``` Let's just redirect to /dev/null for now and maybe we can drop it longer term when c9s goes away. See also [2] where this was reported. [1] https://github.com/coreos/rpm-ostree/commit/f4aecb9b62a97eee8368ca8058b33325891cd62d [2] https://github.com/coreos/rpm-ostree/pull/5388#issuecomment-2971623787 --- minimal/basic-fixes.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/minimal/basic-fixes.yaml b/minimal/basic-fixes.yaml index 7043309..c636e8c 100644 --- a/minimal/basic-fixes.yaml +++ b/minimal/basic-fixes.yaml @@ -23,7 +23,13 @@ postprocess: # tmpfiles.d unit for `/var/roothome` is fine, but this actually doesn't # work if we want to use tmpfiles.d to write to `/root/.ssh` because # tmpfiles gives up on that before getting to `/var/roothome`. - sed -i -e 's, /root, /var/roothome,' /usr/lib/tmpfiles.d/provision.conf + # + # Redirect stdout to /dev/null because of some weird stdout issue + # with newer rpm-ostree: https://github.com/coreos/rpm-ostree/pull/5388#issuecomment-2971623787 + sed -i -e 's, /root, /var/roothome,' /usr/lib/tmpfiles.d/provision.conf > /dev/null # Because /var/roothome is also defined in rpm-ostree-0-integration.conf # we need to delete /var/roothome - sed -i -e '/^d- \/var\/roothome /d' /usr/lib/tmpfiles.d/provision.conf + # + # Redirect stdout to /dev/null because of some weird stdout issue + # with newer rpm-ostree: https://github.com/coreos/rpm-ostree/pull/5388#issuecomment-2971623787 + sed -i -e '/^d- \/var\/roothome /d' /usr/lib/tmpfiles.d/provision.conf > /dev/null From 2804ac870f85caeda9e383a34559c36322c62f60 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Fri, 20 Jun 2025 17:22:36 -0400 Subject: [PATCH 114/697] standard/coreos-user-experience: unconditionalize kexec-tools kexec-tools has been built for riscv now so we can stop conditionalizing the inclusion. --- standard/coreos-user-experience.yaml | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/standard/coreos-user-experience.yaml b/standard/coreos-user-experience.yaml index 295ea0b..1ca6463 100644 --- a/standard/coreos-user-experience.yaml +++ b/standard/coreos-user-experience.yaml @@ -6,26 +6,19 @@ packages: # Improved MOTD experience - console-login-helper-messages-issuegen - console-login-helper-messages-profile + # kdump support + # https://github.com/coreos/fedora-coreos-tracker/issues/622 + # The makedumpfile and kdump-utils RPMs were broken out in + # Fedora and EL10+. To be able to use the same package list + # Across EL9 + Fedora + EL10 let's just name paths for now. + # We can go back to just specifying the RPM names when we + # no longer support EL9. + - kexec-tools + - /usr/share/makedumpfile # makedumpfile RPM + - /usr/bin/kdumpctl # kdump-utils RPM # Container tooling - toolbox # nvme-cli for managing nvme disks - nvme-cli # Used by admins interactively - lsof - -conditional-include: - - if: basearch != "riscv64" - # TODO: kexec-tools isn't built for riscv yet so conditionalize these here - # https://github.com/coreos/fedora-coreos-tracker/issues/1931 - include: - packages: - # kdump support - # https://github.com/coreos/fedora-coreos-tracker/issues/622 - # The makedumpfile and kdump-utils RPMs were broken out in - # Fedora and EL10+. To be able to use the same package list - # Across EL9 + Fedora + EL10 let's just name paths for now. - # We can go back to just specifying the RPM names when we - # no longer support EL9. - - kexec-tools - - /usr/share/makedumpfile # makedumpfile RPM - - /usr/bin/kdumpctl # kdump-utils RPM From 3a25b5c90836ce6d574599ee1e1b3a79518040db Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 22 Jun 2025 09:03:07 +0000 Subject: [PATCH 115/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250622.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 750f2ed..0994a7f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 6011e84..9a94ef4 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 541e27e..a4a9a91 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3fa2056..2af62e7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1e55279..1c499de 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 980cb70..9eb4ff1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 2b98443..248f0dc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 9137d6d..76a8958 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250619.n.0@sha256:0dc5201fccdf34efcd02958ef8fe44823fc51703bb6cef929c05fe8511a9e5e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 59f4c722050e9594cc809c42395149ad09de3942 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Jun 2025 07:08:33 +0000 Subject: [PATCH 116/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250623.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 453f6a4..020b5e5 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index a11e220..af31378 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index d199467..c3f1738 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index d984139..e92d5f3 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 22e69db..144cca0 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 9411e1f..98ea2c1 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 0ac6a16..ca69595 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 8a4be6e..fd860bb 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250619.0@sha256:b215b09f14eb52c6d1f37717eeb6eccb15ca47946735686f3b1e0c8177255e63 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 489c4cb71036e6da936744c802a688a18ecfac4c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Jun 2025 10:11:42 +0000 Subject: [PATCH 117/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250624.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 020b5e5..e385d3e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index af31378..11c9191 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index c3f1738..e398459 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index e92d5f3..83a7535 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 144cca0..f6bef08 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 98ea2c1..5bfac72 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index ca69595..fe9a641 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index fd860bb..98908ab 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250623.0@sha256:0d84a1bddbc5a5763d176104a6a09f732db9561a6406feeb984e2b0da95cee7c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From d9c389140f5de9e4f3a148df3c65ef321b125281 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Jun 2025 10:12:13 +0000 Subject: [PATCH 118/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250623.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 0994a7f..b478101 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 9a94ef4..34d98dd 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a4a9a91..3bab24a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 2af62e7..9294471 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1c499de..2f22663 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9eb4ff1..5b87b13 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 248f0dc..bcb25dc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 76a8958..3e7d886 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250622.n.0@sha256:50eb4f1fe88d0fa1996d2e58793852e1cbf923a34f4aa0a1301dd0234f34fc96 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 93c272d43726ffa3dcd76e92355e956efab6689d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Jun 2025 07:08:37 +0000 Subject: [PATCH 119/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250625.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index e385d3e..f15a5ed 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 11c9191..3fcf422 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index e398459..9c04fd4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 83a7535..c81fecb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index f6bef08..fc85798 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 5bfac72..c61af53 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index fe9a641..ecd7d5b 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 98908ab..ae79437 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250624.0@sha256:be0e61839a24801c33eaf20b0d967b88dedf291e4e1f3d624c7abf6c172ea313 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 7f182606fe4560174d98817950b34092dec51fb4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Jun 2025 10:39:40 +0000 Subject: [PATCH 120/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250625.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b478101..f09f9ea 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 34d98dd..b418c9d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 3bab24a..cf138c4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 9294471..dc2a494 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2f22663..95168c9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5b87b13..5d596cf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index bcb25dc..643a0a9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3e7d886..14a22d2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250623.n.0@sha256:c15731ab13f24a5541b45f6264fa553d22f150bd94a94384ffacc85faa4817ee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From af23daadf155551dfad880dc7f1880162ffc2828 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Thu, 26 Jun 2025 13:44:06 +0200 Subject: [PATCH 121/697] tests: Remove whitespace at EOL --- tests/rootfs/cases/fedora-only | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rootfs/cases/fedora-only b/tests/rootfs/cases/fedora-only index ab736c5..d44148c 100755 --- a/tests/rootfs/cases/fedora-only +++ b/tests/rootfs/cases/fedora-only @@ -8,6 +8,6 @@ case "${ID}" in rpm -q python3-libdnf5 fi ;; - *) + *) ;; esac From a6eae6f98e08740b2d689ea0d9448e1551f74a6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Thu, 26 Jun 2025 13:52:54 +0200 Subject: [PATCH 122/697] ci: Add basic shellcheck, whitespace & format checks --- .gitlab-ci.yml | 11 +++++++ ci/find-whitespace | 65 ++++++++++++++++++++++++++++++++++++++++++ ci/shellcheck | 35 +++++++++++++++++++++++ ci/validate | 71 ++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 182 insertions(+) create mode 100755 ci/find-whitespace create mode 100755 ci/shellcheck create mode 100755 ci/validate diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9adbe3f..3f33590 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,17 @@ variables: image: quay.io/buildah/stable:v1.40.1 needs: [] +basic-checks: + stage: build + image: quay.io/fedora/fedora:latest + needs: [] + script: | + set -xeuo pipefail + dnf install -y file jq python3-yaml ShellCheck + ./ci/find-whitespace + ./ci/shellcheck + ./ci/validate + build-minimal: extends: .build-image script: | diff --git a/ci/find-whitespace b/ci/find-whitespace new file mode 100755 index 0000000..d72b9b7 --- /dev/null +++ b/ci/find-whitespace @@ -0,0 +1,65 @@ +#!/bin/bash + +set -euo pipefail + +main() { + + local files_with_whitespace="" + local files_with_missing_empty_line_at_eof="" + + while IFS= read -r -d '' f; do + echo "[+] Checking ${f}" + + # Looking for whitespace at end of line + if grep -Eq " +$" "${f}"; then + # List of files to ignore + if \ + [[ "${f}" == "./live/isolinux/boot.msg" ]] \ + ; then + echo "[+] Checking ${f}: Ignoring whitespace at end of line" + else + echo "[+] Checking ${f}: Found whitespace at end of line" + files_with_whitespace+=" ${f}" + fi + fi + + # Looking for missing empty line at end of file + if [[ -n $(tail -c 1 "${f}") ]]; then + # List of files to ignore + if \ + [[ "${f}" == "./tests/kola/ignition/resource/authenticated-gs/data/expected/"* ]] ||\ + [[ "${f}" == "./tests/kola/ignition/resource/authenticated-s3/data/expected/"* ]] ||\ + [[ "${f}" == "./tests/kola/ignition/resource/remote/data/expected/"* ]] \ + ; then + echo "[+] Checking ${f}: Ignoring missing empty line at end of file" + else + echo "[+] Checking ${f}: Missing empty line at end of file" + files_with_missing_empty_line_at_eof+=" ${f}" + fi + fi + done< <(find . -path "./.git" -prune -o -type f -print0) + + echo "" + if [[ -n "${files_with_whitespace}" ]]; then + echo "[+] Found files with whitespace at the end of line" + echo "${files_with_whitespace}" | tr ' ' '\n' + else + echo "[+] No files with whitespace at the end of line" + fi + + echo "" + if [[ -n "${files_with_missing_empty_line_at_eof}" ]]; then + echo "[+] Found files with missing empty line at end of file" + echo "${files_with_missing_empty_line_at_eof}" | tr ' ' '\n' + else + echo "[+] No files with missing empty line at end of file" + fi + + if [[ -n "${files_with_whitespace}" ]] || [[ -n "${files_with_missing_empty_line_at_eof}" ]]; then + exit 1 + fi + + exit 0 +} + +main "${@}" diff --git a/ci/shellcheck b/ci/shellcheck new file mode 100755 index 0000000..7543bd3 --- /dev/null +++ b/ci/shellcheck @@ -0,0 +1,35 @@ +#!/bin/bash +# Template generated by https://github.com/coreos/repo-templates; do not edit downstream + +set -euo pipefail + +main() { + local found_errors="false" + # Let's start with error, then we can do warning, info, style + local -r severity="error" + + while IFS= read -r -d '' f; do + # Skip non-text files that are very unlikely to be shell scripts + if [[ "$(file -b --mime-type "${f}" | sed 's|/.*||')" != "text" ]]; then + continue + fi + shebang="$(head -1 "${f}")" + if [[ "${f}" == *.sh ]] || \ + [[ ${shebang} =~ ^#!/.*/bash.* ]] || \ + [[ ${shebang} =~ ^#!/.*/env\ bash ]]; then + echo "[+] Checking ${f}" + shellcheck --external-sources --shell bash --severity="${severity}" "${f}" || found_errors="true" + bash -n "${f}" || found_errors="true" + fi + done< <(find . -path "./.git" -prune -o -path "./vendor" -prune -o -type f -print0) + + if [[ "${found_errors}" != "false" ]]; then + echo "[+] Found errors with ShellCheck" + exit 1 + fi + + echo "[+] No error found with ShellCheck" + exit 0 +} + +main "${@}" diff --git a/ci/validate b/ci/validate new file mode 100755 index 0000000..dd36077 --- /dev/null +++ b/ci/validate @@ -0,0 +1,71 @@ +#!/usr/bin/python3 +# Validate basic syntax of shell script and yaml. + +import os +import re +import stat +import subprocess +import yaml + +INITRD_SERVICES_WITHOUT_BEFORE = { + # Depended on by other services + 'coreos-livepxe-rootfs.service', +} + +validated=0 + +def openat(dirfd, name, mode='r'): + def opener(path, flags): + return os.open(path, flags, dir_fd=dirfd) + return open(name, mode, opener=opener) + + +def validate_initrd_service(rootfd, name): + with openat(rootfd, name) as fh: + if ([l for l in fh.readlines() if l.startswith('Before=')] or + name in INITRD_SERVICES_WITHOUT_BEFORE): + global validated + validated += 1 + else: + raise Exception( + f'{name} has no Before= and may race with switch-root' + ) + + +BASH_UNBRACKETED_IF = re.compile(r'\sif\s+"?\$') +def validate_shell(rootfd, name): + subprocess.check_call(['bash', '-n', name], preexec_fn=lambda: os.fchdir(rootfd)) + with openat(rootfd, name) as fh: + if BASH_UNBRACKETED_IF.search(fh.read()): + raise Exception(f'Possible unbracketed conditional in {name}') + global validated + validated +=1 + + +for root, dirs, files, rootfd in os.fwalk('.'): + # Skip .git + if '.git' in dirs: + dirs.remove('.git') + for name in files: + print(f"[+] Looking at {name}") + if name.endswith(('.yaml', '.yml')): + with open(os.open(name, dir_fd=rootfd, flags=os.O_RDONLY)) as f: + yaml.safe_load(f) + validated +=1 + continue + elif name.endswith('.sh'): + validate_shell(rootfd, name) + continue + elif 'dracut/modules.d' in root and name.endswith('.service'): + validate_initrd_service(rootfd, name) + stbuf = os.lstat(name, dir_fd=rootfd) + if not stat.S_ISREG(stbuf.st_mode): + continue + if not stbuf.st_mode & stat.S_IXUSR: + continue + mimetype = subprocess.check_output(['file', '-b', '--mime-type', name], encoding='UTF-8', + preexec_fn=lambda: os.fchdir(rootfd)).strip() + if mimetype == 'text/x-shellscript': + validate_shell(rootfd, name) + +print(f"Validated {validated} files") From 62dc87060b58975ffc688c767d56a5448cef82cc Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 27 Jun 2025 05:30:37 +0000 Subject: [PATCH 123/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250627.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index f15a5ed..5365790 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 3fcf422..51c8b66 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 9c04fd4..e25c068 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index c81fecb..f4d6fb6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index fc85798..a224786 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index c61af53..710fff3 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index ecd7d5b..8f67887 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index ae79437..b7d1ff3 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250625.0@sha256:a5a714517ded1a54ac779461cbd2b2abb32a41a594d824ff2de3e97cd1689416 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From fbf65c0e10b18c96a13525e74d9f8cbce44fe5b0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 27 Jun 2025 05:30:58 +0000 Subject: [PATCH 124/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250626.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index f09f9ea..8e2c082 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index b418c9d..c631030 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index cf138c4..c0245cc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index dc2a494..36c790c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 95168c9..caac5cc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5d596cf..6d6c8f1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 643a0a9..cc4b2f2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 14a22d2..b239599 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250625.n.0@sha256:dc842311d4e7382c6f7bc1323ba4fa44069484a0515e443f6d5cfe8a4d44fb2f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 4845fd46b0f0948edab7fb1e06f40d0b9dc29e92 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 27 Jun 2025 10:34:55 +0000 Subject: [PATCH 125/697] chore(deps): update konflux references to a39bc3e Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 5365790..16a5eda 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -47,7 +47,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 51c8b66..a2149be 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -44,7 +44,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index e25c068..beb67da 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index f4d6fb6..8e7f37a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index a224786..d6a6e32 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 710fff3..471fd80 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8f67887..25984f4 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b7d1ff3..4ca614a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 8e2c082..93c6d6b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -47,7 +47,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index c631030..eb91600 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -44,7 +44,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c0245cc..e4602ee 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 36c790c..4563894 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index caac5cc..1fdab62 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 6d6c8f1..b76cbbb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index cc4b2f2..552ffbf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -45,7 +45,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b239599..cab7a2e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -42,7 +42,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:17ec031131088220ff381c4f74882471ce60905ffe0ee8589481cef475689afb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From c6b38ec294a783b1001844f443e67c4bc42162f8 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 27 Jun 2025 12:08:08 +0000 Subject: [PATCH 126/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250627.0 docker digest to 81904c2 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 16a5eda..397c385 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index a2149be..8072475 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index beb67da..683e297 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 8e7f37a..aaee2e3 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index d6a6e32..b77e9a2 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 471fd80..bd3bd82 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 25984f4..e729de1 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4ca614a..bbe4a78 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:4e965b1b1f361c6635252730143cdad1a14809b4823b000c01773f4161dfd398 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 148fb356642e1d7c9adbe4b04bbd64ecd727c87d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 27 Jun 2025 12:08:12 +0000 Subject: [PATCH 127/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250627.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 93c6d6b..aa06a66 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -38,7 +38,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index eb91600..a8a84f0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -37,7 +37,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index e4602ee..8b66b8c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 4563894..6712b5d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1fdab62..e3777da 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index b76cbbb..7212d47 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 552ffbf..80741d6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -36,7 +36,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index cab7a2e..c7dcead 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -35,7 +35,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250626.n.0@sha256:a3b6cf6a1d5397315bf211c694213b93b95d4114802d3173fc2f0f5bc85b1623 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 172a01a6a704bc97ccbb3292c4b12dc1f2ab52e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 27 Jun 2025 14:00:19 +0200 Subject: [PATCH 128/697] Make 'on-cel-expression' more readable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 21 +++++++++++++------ .tekton/fedora-bootc-42-iot-push.yaml | 21 +++++++++++++------ ...ra-bootc-42-minimal-plus-pull-request.yaml | 17 +++++++++++---- .../fedora-bootc-42-minimal-plus-push.yaml | 17 +++++++++++---- .../fedora-bootc-42-minimal-pull-request.yaml | 15 +++++++++---- .tekton/fedora-bootc-42-minimal-push.yaml | 15 +++++++++---- ...fedora-bootc-42-standard-pull-request.yaml | 14 +++++++++---- .tekton/fedora-bootc-42-standard-push.yaml | 15 +++++++++---- ...fedora-bootc-rawhide-iot-pull-request.yaml | 21 +++++++++++++------ .tekton/fedora-bootc-rawhide-iot-push.yaml | 21 +++++++++++++------ ...otc-rawhide-minimal-plus-pull-request.yaml | 17 +++++++++++---- ...edora-bootc-rawhide-minimal-plus-push.yaml | 17 +++++++++++---- ...ra-bootc-rawhide-minimal-pull-request.yaml | 15 +++++++++---- .../fedora-bootc-rawhide-minimal-push.yaml | 15 +++++++++---- ...a-bootc-rawhide-standard-pull-request.yaml | 15 +++++++++---- .../fedora-bootc-rawhide-standard-push.yaml | 15 +++++++++---- 16 files changed, 199 insertions(+), 72 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 397c385..75032e1 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -8,12 +8,21 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || - "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 8072475..b7f4fcc 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -7,12 +7,21 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || - "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 683e297..25b51d4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -8,10 +8,19 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index aaee2e3..cbb94a4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -7,10 +7,19 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index b77e9a2..a735715 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -8,10 +8,17 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index bd3bd82..144daaa 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -7,10 +7,17 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e729de1..4b8ef8a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -8,10 +8,16 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index bbe4a78..cc2faaa 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -7,10 +7,17 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./standard/***".pathChanged() || ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index aa06a66..03f6234 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -8,12 +8,21 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || - "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index a8a84f0..e6489d6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -7,12 +7,21 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./iot.yaml".pathChanged() || "./iot/***".pathChanged() - || "./minimal-plus.hidden.yaml".pathChanged() || "./minimal-plus/***".pathChanged() - || "./minimal.yaml".pathChanged() || "./minimal/***".pathChanged() || - "./fedora-includes/generic.yaml".pathChanged() || ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8b66b8c..e03eb54 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -8,10 +8,19 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6712b5d..38dce5e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -7,10 +7,19 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./minimal-plus.hidden.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal-plus/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e3777da..ba3fe8a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -8,10 +8,17 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-minimal-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 7212d47..0bc921e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -7,10 +7,17 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./minimal.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./minimal/***".pathChanged() || ".tekton/fedora-bootc-rawhide-minimal-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-minimal-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 80741d6..f5c5426 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -8,10 +8,17 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-pull-request.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "pull_request" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-standard-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index c7dcead..bca91f1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -7,10 +7,17 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" && ( "./standard.yaml".pathChanged() || "./fedora-includes/generic.yaml".pathChanged() - || "./standard/***".pathChanged() || ".tekton/fedora-bootc-rawhide-standard-push.yaml".pathChanged() - || "Containerfile".pathChanged() ) + pipelinesascode.tekton.dev/on-cel-expression: | + event == "push" && + ( + target_branch == "main" + ) && ( + ".tekton/fedora-bootc-rawhide-standard-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide From 3e4fab957336f1d8b5b4db6c78ffdb7e4818fe1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 27 Jun 2025 14:03:16 +0200 Subject: [PATCH 129/697] Add missing files which must trigger konflux builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes in `bootc-base-imagectl` and `install-manifests` files must trigger konflux builds for all the existing base images. Also changes in "minimal" or "minimal-plus" must trigger konflux builds in all the "standard" images. Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-iot-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-42-standard-pull-request.yaml | 7 +++++++ .tekton/fedora-bootc-42-standard-push.yaml | 6 ++++++ .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 ++ .../fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 6 ++++++ .tekton/fedora-bootc-rawhide-standard-push.yaml | 6 ++++++ 16 files changed, 49 insertions(+) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 75032e1..8b341db 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -15,6 +15,8 @@ metadata: ) && ( ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b7f4fcc..0de8c1a 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -14,6 +14,8 @@ metadata: ) && ( ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 25b51d4..b7a539a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -15,6 +15,8 @@ metadata: ) && ( ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index cbb94a4..59b3bd9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -14,6 +14,8 @@ metadata: ) && ( ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index a735715..482c1c8 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -15,6 +15,8 @@ metadata: ) && ( ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 144daaa..545d4ec 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -14,6 +14,8 @@ metadata: ) && ( ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 4b8ef8a..1dab7f9 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -15,9 +15,16 @@ metadata: ) && ( ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || "standard.yaml".pathChanged() || "standard/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index cc2faaa..4592738 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -14,7 +14,13 @@ metadata: ) && ( ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || "standard.yaml".pathChanged() || "standard/***".pathChanged() ) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 03f6234..100b3fa 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -15,6 +15,8 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index e6489d6..edcee18 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -14,6 +14,8 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index e03eb54..0041242 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -15,6 +15,8 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 38dce5e..0b39ba7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -14,6 +14,8 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ba3fe8a..e035abb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -15,6 +15,8 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 0bc921e..292513c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -14,6 +14,8 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-minimal-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index f5c5426..890b793 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -15,7 +15,13 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || "standard.yaml".pathChanged() || "standard/***".pathChanged() ) diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index bca91f1..9340924 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -14,7 +14,13 @@ metadata: ) && ( ".tekton/fedora-bootc-rawhide-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || "standard.yaml".pathChanged() || "standard/***".pathChanged() ) From 420f21b36d271ed40107531f7d2a515b11765ff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 27 Jun 2025 14:10:38 +0200 Subject: [PATCH 130/697] Use 'renovate' prefix for all the branches created by konflux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 8b618b1..3b7b9cd 100644 --- a/renovate.json +++ b/renovate.json @@ -19,7 +19,7 @@ ], "enabled": true, "groupName": "Konflux references", - "branchPrefix": "konflux/references/", + "branchPrefix": "renovate/konflux/references/", "group": { "branchTopic": "{{{baseBranch}}}", "commitMessageTopic": "{{{groupName}}}" From aabbd950b63d489e869365c46f0ef8cbbb70a0a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 27 Jun 2025 14:11:29 +0200 Subject: [PATCH 131/697] Use the 'branch' auto merge type in renovate's configuration. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instead of crating MRs, renovate will: - Create the branch, wait for test results - Rebase it any time it gets out of date with the base branch - Automerge the branch commit if it's: (a) up-to-date with the base branch, and (b) passing all tests - As a backup, raise a PR only if either: (a) tests fail, or (b) tests remain pending for too long (default: 24 hours) Resolves #62 Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-push.yaml | 1 + .tekton/fedora-bootc-42-minimal-plus-push.yaml | 1 + .tekton/fedora-bootc-42-minimal-push.yaml | 1 + .tekton/fedora-bootc-42-standard-push.yaml | 1 + .tekton/fedora-bootc-rawhide-iot-push.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-push.yaml | 1 + .tekton/fedora-bootc-rawhide-standard-push.yaml | 1 + renovate.json | 1 + 9 files changed, 9 insertions(+) diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0de8c1a..87f0728 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 59b3bd9..95d15a8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 545d4ec..0eb5902 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() || diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4592738..bcb79a3 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index edcee18..befcdc5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0b39ba7..d9df794 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 292513c..585533e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-rawhide-minimal-push.yaml".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 9340924..137e8e3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -10,6 +10,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: | event == "push" && ( + target_branch.matches("renovate/.*") || target_branch == "main" ) && ( ".tekton/fedora-bootc-rawhide-standard-push.yaml".pathChanged() || diff --git a/renovate.json b/renovate.json index 3b7b9cd..a7818c4 100644 --- a/renovate.json +++ b/renovate.json @@ -4,6 +4,7 @@ "github>platform-engineering-org/.github" ], "dependencyDashboard": true, + "automergeType": "branch", "tekton": { "additionalBranchPrefix": "", "includePaths": [ From f461054c89b0860c8c8ded657ebb83e2b30d48d2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 30 Jun 2025 00:05:34 +0000 Subject: [PATCH 132/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250629.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 8b341db..05ef9a5 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 87f0728..9a2879d 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index b7a539a..b4ec914 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 95d15a8..ad58e2e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 482c1c8..330a9fd 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 0eb5902..582c693 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 1dab7f9..5b5ea7d 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index bcb79a3..b8fe4cf 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250627.0@sha256:81904c22dadfe4180a0a5418550e756a66168d7f470350e3538903022b7371c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 470da912f46d945d7f110f922d16cde34a2cd024 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 30 Jun 2025 04:05:16 +0000 Subject: [PATCH 133/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250630.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 05ef9a5..71184f5 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 9a2879d..0e43856 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index b4ec914..6c17bd5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index ad58e2e..36ffc72 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 330a9fd..738be8d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 582c693..fc0fb9d 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 5b5ea7d..642300f 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b8fe4cf..65ee9f1 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250629.0@sha256:3b29949b5118cbbcd2935cccc84c0c3d35960194819e2371606e6dcb7df8bec4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From 7e851e348f85a66909760a120a53790faf0a7280 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 30 Jun 2025 05:05:25 +0000 Subject: [PATCH 134/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250629.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 100b3fa..d4fbc52 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index befcdc5..46357f1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0041242..873cb13 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index d9df794..0e1461a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e035abb..11c5f0e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 585533e..f8c8e32 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 890b793..a6cf5ce 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 137e8e3..8ed5df8 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250627.n.0@sha256:9739778a1d3fc242df7e3f568b649340b364efc41ec6e1441e89f329d8228125 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 3f25a6c5a80c674b4c1f019ceeff5bfe64dc06e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 30 Jun 2025 10:41:19 +0200 Subject: [PATCH 135/697] Add missing 'or' to 'on-cel-expression' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 71184f5..edfaa1b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -20,7 +20,7 @@ metadata: "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() + "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() || "iot.yaml".pathChanged() || "iot/***".pathChanged() From d32441334de74e5e212034e2d57824962fb0aec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Mon, 30 Jun 2025 10:41:58 +0200 Subject: [PATCH 136/697] Use pull request pipelinerun to trigger konflux builds. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using the on push pipelinerun has an undesired side effect of releasing all the renovate builds before merging them into the main branch. Use the "on pull request" pipelinerun in an attempt to avoid this. Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-42-iot-push.yaml | 4 +--- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 4 +--- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-42-minimal-push.yaml | 4 +--- .tekton/fedora-bootc-42-standard-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-42-standard-push.yaml | 4 +--- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-rawhide-iot-push.yaml | 4 +--- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 4 +--- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 4 +--- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-rawhide-standard-push.yaml | 4 +--- 16 files changed, 24 insertions(+), 40 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index edfaa1b..cfff75b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0e43856..7f3f766 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 6c17bd5..9371c13 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 36ffc72..58450ad 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 738be8d..1036ae3 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index fc0fb9d..de4bcd7 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 642300f..2d7d46e 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 65ee9f1..8cdb833 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d4fbc52..9acf168 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 46357f1..1ea4e56 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-iot-push.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 873cb13..57d1a21 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0e1461a..232d57e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 11c5f0e..ef22163 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-rawhide-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f8c8e32..97ec314 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-minimal-push.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a6cf5ce..19a8b5c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -9,9 +9,9 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "pull_request" && ( - target_branch == "main" + (event == "pull_request" && target_branch == "main") || + (event == "push" && target_branch.startsWith("renovate/")) ) && ( ".tekton/fedora-bootc-rawhide-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 8ed5df8..bc8ac9a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -8,10 +8,8 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | - event == "push" && ( - target_branch.matches("renovate/.*") || - target_branch == "main" + (event == "push" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() || From 051753c6e19ecca07d1cc4873a7181ac78037be5 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 30 Jun 2025 10:08:55 +0000 Subject: [PATCH 137/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250630.0 docker digest to f8d444f Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index cfff75b..d2eb730 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 7f3f766..890ebd3 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 9371c13..1dcd580 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 58450ad..f8e66b5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 1036ae3..656da41 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index de4bcd7..410de2a 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2d7d46e..d3b8fe2 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 8cdb833..eb8fb29 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} From e57b68b2f0e9f810c7446b2bd37f1bda19eaace4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 30 Jun 2025 11:31:26 +0000 Subject: [PATCH 138/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose:fedora-rawhide-20250629.n.0 docker digest to 1f73a32 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 9acf168..a20d9a6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 1ea4e56..b8ed49e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 57d1a21..13c116b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 232d57e..97e4560 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ef22163..dcafbc2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 97ec314..7b34ba0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 19a8b5c..c8c63eb 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index bc8ac9a..936f573 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 9286e2dc94344702ab3a52998530c7610d576792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 3 Jul 2025 18:31:04 +0200 Subject: [PATCH 139/697] Use specific pipelineruns for renovate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We need to separate renovate pipelineruns because they need a mixed configuration from 'pull-request' and 'push' pipelineruns: - We need the images to expire after few days - We need to label the produced snapshot so they are not released [^1] [^1]: https://github.com/konflux-ci/integration-service/issues/1192 Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 3 +- .../fedora-bootc-42-iot-renovate-push.yaml | 67 +++++++++++++++++++ ...ra-bootc-42-minimal-plus-pull-request.yaml | 3 +- ...a-bootc-42-minimal-plus-renovate-push.yaml | 65 ++++++++++++++++++ .../fedora-bootc-42-minimal-pull-request.yaml | 3 +- ...fedora-bootc-42-minimal-renovate-push.yaml | 63 +++++++++++++++++ ...fedora-bootc-42-standard-pull-request.yaml | 3 +- ...edora-bootc-42-standard-renovate-push.yaml | 67 +++++++++++++++++++ ...fedora-bootc-rawhide-iot-pull-request.yaml | 3 +- ...edora-bootc-rawhide-iot-renovate-push.yaml | 67 +++++++++++++++++++ ...otc-rawhide-minimal-plus-pull-request.yaml | 3 +- ...tc-rawhide-minimal-plus-renovate-push.yaml | 65 ++++++++++++++++++ ...ra-bootc-rawhide-minimal-pull-request.yaml | 3 +- ...a-bootc-rawhide-minimal-renovate-push.yaml | 63 +++++++++++++++++ ...a-bootc-rawhide-standard-pull-request.yaml | 3 +- ...-bootc-rawhide-standard-renovate-push.yaml | 67 +++++++++++++++++++ 16 files changed, 532 insertions(+), 16 deletions(-) create mode 100644 .tekton/fedora-bootc-42-iot-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-42-minimal-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-42-standard-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index d2eb730..9d7047e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml new file mode 100644 index 0000000..df5a1e5 --- /dev/null +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -0,0 +1,67 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-42-iot-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-iot + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-42-iot-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:renovate-on-push-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 1dcd580..6ab51db 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml new file mode 100644 index 0000000..9f4f859 --- /dev/null +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -0,0 +1,65 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-minimal-plus + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-42-minimal-plus-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:renovate-on-push-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 656da41..2b884dc 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml new file mode 100644 index 0000000..2b81243 --- /dev/null +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -0,0 +1,63 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-42-minimal-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-minimal + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-42-minimal-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:renovate-on-push-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d3b8fe2..d4c4738 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml new file mode 100644 index 0000000..a9c37fe --- /dev/null +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -0,0 +1,67 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-42-standard-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-42 + appstudio.openshift.io/component: fedora-bootc-42-standard + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-42-standard-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:renovate-on-push-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index a20d9a6..56a5f83 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-iot-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml new file mode 100644 index 0000000..1c941ac --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -0,0 +1,67 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-rawhide-iot-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-iot + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-rawhide-iot-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:renovate-on-pr-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 13c116b..dd39cfb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml new file mode 100644 index 0000000..e461e58 --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -0,0 +1,65 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-minimal-plus + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-rawhide-minimal-plus-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:renovate-on-push-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index dcafbc2..09a2308 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-minimal-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml new file mode 100644 index 0000000..ef1d16e --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -0,0 +1,63 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-minimal + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-rawhide-minimal-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:renovate-on-push-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c8c63eb..e07027d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -10,8 +10,7 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: | ( - (event == "pull_request" && target_branch == "main") || - (event == "push" && target_branch.startsWith("renovate/")) + (event == "pull_request" && target_branch == "main") ) && ( ".tekton/fedora-bootc-rawhide-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml new file mode 100644 index 0000000..4ebc0fd --- /dev/null +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -0,0 +1,67 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-rawhide-standard-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-rawhide + appstudio.openshift.io/component: fedora-bootc-rawhide-standard + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-rawhide-standard-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:renovate-on-push-{{revision}} + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h From 5c9fbbdf21e7617296ef5e325ee4c77d3f6a889a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 4 Jul 2025 17:12:47 +0200 Subject: [PATCH 140/697] Fix the output image in renovate's pipelinerun MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The integration tests expect a different image tag depending on the event type (pull_request/push) Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index df5a1e5..6d200e6 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -53,7 +53,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:renovate-on-push-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 9f4f859..e7feb53 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -51,7 +51,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:renovate-on-push-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 2b81243..645e9ed 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -49,7 +49,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:renovate-on-push-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index a9c37fe..461cb6b 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -53,7 +53,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:renovate-on-push-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 1c941ac..8fc5828 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -53,7 +53,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:renovate-on-pr-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index e461e58..42e67ac 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -51,7 +51,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:renovate-on-push-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ef1d16e..c9e249f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -49,7 +49,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:renovate-on-push-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 4ebc0fd..9f73786 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -53,7 +53,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:renovate-on-push-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} pipelineRef: params: - name: bundle From 9aee94b0248fd5f217522e3cbcdf5453a6ff8fcd Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 7 Jul 2025 03:14:17 +0000 Subject: [PATCH 141/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250707.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 9d7047e..bc065ec 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 890ebd3..3191b74 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 6d200e6..76cb3ee 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 6ab51db..edabaa0 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index f8e66b5..0e1060c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index e7feb53..07a3be1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 2b884dc..3331e3c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 410de2a..9101b6b 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 645e9ed..c6491e4 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d4c4738..2648983 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index eb8fb29..b90534e 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f8d444fa4559274a63c28e1a1121346ccf465a22ff51c0d8c73956688f279221 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 461cb6b..26c909d 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250630.0@sha256:f7d33d503607f01612697220f9f2179276b3883085a15ab7a6dc73ad75eaeaf8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f0fecdea04f06c218ad52bfb86f5a7f50a4b1e7b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 7 Jul 2025 03:14:22 +0000 Subject: [PATCH 142/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250706.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 56a5f83..5a4fb6e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index b8ed49e..ef51c6b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 8fc5828..e7e2aaa 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index dd39cfb..38d1097 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 97e4560..4e0aff6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 42e67ac..eb9f7db 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 09a2308..d695b92 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 7b34ba0..ca51c3f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index c9e249f..246b393 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e07027d..5487b4d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 936f573..2ef5c85 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:1f73a3262373c3e694d269913a9495cc52a01b5ea308cb3392a1da9c0ce0d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 9f73786..6e723cd 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250629.n.0@sha256:0af648e21462408f7cfa65c25feb2f44a4195e0fe710ec9e7080adda689a6687 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ad1558af40e0a1e8824bb53c9c61aac501998c55 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 7 Jul 2025 15:35:59 +0000 Subject: [PATCH 143/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250707.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 5a4fb6e..0c0f1f7 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index ef51c6b..3117c7d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index e7e2aaa..d10ec59 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 38d1097..2ca0b9e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 4e0aff6..f7523dd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index eb9f7db..f4ed720 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index d695b92..855ae9b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index ca51c3f..cd6d43b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 246b393..f152d5f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 5487b4d..bd15d44 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2ef5c85..9858304 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 6e723cd..b9390c9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250706.n.0@sha256:a47c105a7f99594a55310a692a0582f065fd0b498d70db9486f51a9f12392525 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 620425f270f5905bb5db312625700abd443a393c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 8 Jul 2025 07:59:08 +0000 Subject: [PATCH 144/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250707.0 docker digest to 8833afd Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index bc065ec..03aba69 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 3191b74..ea1f82b 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 76cb3ee..6339fd2 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index edabaa0..be96043 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 0e1060c..d5153af 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 07a3be1..fc1619d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 3331e3c..c312d1a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 9101b6b..bb5e0a7 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c6491e4..fe8381b 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2648983..011667d 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b90534e..a6cd4bb 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 26c909d..717aa20 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:74f087b192c487945c9afa7be1df1bd9af32c9e3ce2554318db6635da83fa767 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6c1634af3f9e57c22a8c69ff3540f74347cfc693 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 8 Jul 2025 13:17:49 +0000 Subject: [PATCH 145/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250708.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 0c0f1f7..04d5736 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 3117c7d..83f2a38 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index d10ec59..5e75576 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2ca0b9e..5374726 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f7523dd..96ca139 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index f4ed720..2de4ec3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 855ae9b..8949abf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index cd6d43b..082b8c2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index f152d5f..dbed5fe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index bd15d44..6c9cf0e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 9858304..e03aed8 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b9390c9..8fff843 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250707.n.0@sha256:4ba190a902cd2e8303df04c77d12c41b3c8a00b3ea0e8eec87a14d4a807da501 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a1f5a5b5a13ea4daf142b889c40aeda2bc9199ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 11 Jul 2025 08:01:15 +0200 Subject: [PATCH 146/697] Escape slash characters in matchPackageNames regex MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index a7818c4..9d59533 100644 --- a/renovate.json +++ b/renovate.json @@ -16,7 +16,7 @@ "packageRules": [ { "matchPackageNames": [ - "/^quay.io/bootc-devel/tekton-catalog//" + "/^quay.io\/bootc-devel\/tekton-catalog\//" ], "enabled": true, "groupName": "Konflux references", From e0779c210a5f24da59e88057b39dec324364af15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 11 Jul 2025 08:10:39 +0200 Subject: [PATCH 147/697] Leave only the group package rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- renovate.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/renovate.json b/renovate.json index 9d59533..4aa977e 100644 --- a/renovate.json +++ b/renovate.json @@ -60,18 +60,13 @@ "f41" ], "packageRules": [ - { - "matchPackageNames": [ - "/quay.io\/bootc-devel\/fedora-bootc-.*-compose/" - ], - "automerge": true - }, { "matchPackageNames": [ "/quay.io\/bootc-devel\/fedora-bootc-rawhide-compose/" ], "groupName": "Fedora rawhide compose dependencies", "groupSlug": "fedora-rawhide-compose-dependencies" + "automerge": true }, { "matchPackageNames": [ @@ -79,6 +74,7 @@ ], "groupName": "Fedora 42 compose dependencies", "groupSlug": "fedora-42-compose-dependencies" + "automerge": true }, { "matchPackageNames": [ From 06a10e77ebd200d08f44cf5035d719c87f333889 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 11 Jul 2025 08:11:47 +0200 Subject: [PATCH 148/697] Change renovate's schedule for compose container images MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the current branch creation schedule in renovate for compose container images. Currently is using the default renovate's configuration which is between 12:00 AM and 03:59 AM, only on Monday. Signed-off-by: Miguel Martín --- renovate.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 4aa977e..920f1b0 100644 --- a/renovate.json +++ b/renovate.json @@ -65,7 +65,10 @@ "/quay.io\/bootc-devel\/fedora-bootc-rawhide-compose/" ], "groupName": "Fedora rawhide compose dependencies", - "groupSlug": "fedora-rawhide-compose-dependencies" + "groupSlug": "fedora-rawhide-compose-dependencies", + "schedule": [ + "at any time" + ], "automerge": true }, { @@ -73,7 +76,10 @@ "/quay.io\/bootc-devel\/fedora-bootc-42-compose/" ], "groupName": "Fedora 42 compose dependencies", - "groupSlug": "fedora-42-compose-dependencies" + "groupSlug": "fedora-42-compose-dependencies", + "schedule": [ + "at any time" + ], "automerge": true }, { From 38eccdbc3ad0173b22840b2bd627368f5f851b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Fri, 11 Jul 2025 08:19:25 +0200 Subject: [PATCH 149/697] Support grouping Fedora 40/41 compose updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add support for Fedora 40/41 compose updates grouping to the package rules for possible future needs Signed-off-by: Miguel Martín --- renovate.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/renovate.json b/renovate.json index 920f1b0..716adcc 100644 --- a/renovate.json +++ b/renovate.json @@ -82,6 +82,28 @@ ], "automerge": true }, + { + "matchPackageNames": [ + "/quay.io\/bootc-devel\/fedora-bootc-41-compose/" + ], + "groupName": "Fedora 41 compose dependencies", + "groupSlug": "fedora-41-compose-dependencies", + "schedule": [ + "at any time" + ], + "automerge": true + }, + { + "matchPackageNames": [ + "/quay.io\/bootc-devel\/fedora-bootc-40-compose/" + ], + "groupName": "Fedora 40 compose dependencies", + "groupSlug": "fedora-40-compose-dependencies", + "schedule": [ + "at any time" + ], + "automerge": true + }, { "matchPackageNames": [ "quay.io/fedora/fedora" From ba74914afcf26a8fceb5f52b6ea24241c8efc236 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 11 Jul 2025 09:42:56 +0000 Subject: [PATCH 150/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250711.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 04d5736..5c8760a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 83f2a38..8ded6f2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 5e75576..3f9ac3b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 5374726..53cdd75 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 96ca139..d736486 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 2de4ec3..c497209 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 8949abf..78380d9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 082b8c2..004552c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index dbed5fe..97cb86b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 6c9cf0e..3f218e2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index e03aed8..bd505c6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 8fff843..e7d020a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250708.n.0@sha256:64926217e8c695573f56f46ee341cf9cf9906abecd0d0f7fc1d92c7bae6314ad + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ef89dc988fd1d64aaac7b28691b79802ef49f79b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 11 Jul 2025 11:02:43 +0000 Subject: [PATCH 151/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250711.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 03aba69..e9e7af0 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index ea1f82b..29921b4 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 6339fd2..882dcfc 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index be96043..5708c7e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index d5153af..c5498b1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index fc1619d..11baeaf 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c312d1a..b43c0f5 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index bb5e0a7..c554461 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index fe8381b..2cc82fc 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 011667d..bd30331 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index a6cd4bb..28391f3 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 717aa20..24f6561 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250707.0@sha256:8833afdcc254e41f1c4d971a80cb08ae52d96dabbdd65d305fdadbf675e69939 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 87f861a40b022305a82d351f36ec7849d02f8c93 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 12 Jul 2025 02:29:07 +0000 Subject: [PATCH 152/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250712.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index e9e7af0..3ca1fb8 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 29921b4..9baa173 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 882dcfc..dfaac5f 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 5708c7e..46a77cc 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index c5498b1..a7dfafb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 11baeaf..4e08e87 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index b43c0f5..97731fd 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index c554461..389b69f 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 2cc82fc..e00f61e 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index bd30331..6ccc5c6 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 28391f3..a38ca9e 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 24f6561..69bbabd 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250711.0@sha256:d15655da370f718a1606ca911da4a1b179725efe76789716f54c2b9039465fb4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b9b55d3051bf7f357fdfe2fee68f2c6956f5b533 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 13 Jul 2025 03:35:50 +0000 Subject: [PATCH 153/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250713.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3ca1fb8..7e68964 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 9baa173..2f10092 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index dfaac5f..9a9fada 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 46a77cc..03316ca 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index a7dfafb..fe477b8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 4e08e87..8c45e6a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 97731fd..4b5cb67 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 389b69f..6c20c79 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index e00f61e..c27e3b1 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 6ccc5c6..343c311 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index a38ca9e..d2a14e9 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 69bbabd..9dddcde 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250712.0@sha256:65a439b6965d57176265b02cd9e05c285f97b91cb0ac2fad19acf2c846cb6bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe - MANIFEST=fedora-standard - name: image-expires-after value: 5d From eb9cc998161188beb946141781ac7fe665074a83 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 14 Jul 2025 04:06:54 +0000 Subject: [PATCH 154/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250714.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 7e68964..487e926 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 2f10092..de8fdbd 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 9a9fada..3593df2 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 03316ca..0448c64 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index fe477b8..c36ec36 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 8c45e6a..110e580 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 4b5cb67..b9e128a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 6c20c79..c7b41fa 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c27e3b1..274c36f 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 343c311..06dc117 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index d2a14e9..7a6df9d 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 9dddcde..aeb37dd 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250713.0@sha256:8da1a5e5fc8840dee7b7f62b812cfdd268fa7c765b4f29edad35287be6310efe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cb791e6fad526446a5617c628bb9144ee5d6dce0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 14 Jul 2025 05:09:02 +0000 Subject: [PATCH 155/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250713.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 5c8760a..aa71620 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 8ded6f2..c65bfa3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 3f9ac3b..ce4295d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 53cdd75..4758532 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index d736486..0fe7f62 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c497209..e0dacda 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 78380d9..c1be6d2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 004552c..cea4ec4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 97cb86b..f8c6628 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3f218e2..60bc8d7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index bd505c6..cc24fe5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index e7d020a..d95f741 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250711.n.0@sha256:72b47e10c6ff852451d0a0dbcdb25253b0890418654a9fc2aeee7d58de04336d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8545b422420104321af0ddfdfe2e24497732c375 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 14 Jul 2025 12:13:08 -0400 Subject: [PATCH 156/697] bootc-base-imagectl: add `--sysusers` This allows users to opt out of the hardcoded passwd/group files we carry here in favour of making sysusers entries canonical. This is especially useful with the `--add-dir` option, which allows injecting user-owned sysusers entries to e.g. define more users or to fixate normally floating UIDs from packages. This uses the new `sysusers` knob in rpm-ostree. For more details, see: https://github.com/coreos/rpm-ostree/pull/5427 --- bootc-base-imagectl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 84e49df..446d931 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -48,6 +48,10 @@ def run_build_rootfs(args): override_manifest['ostree-layers'].append(f'overlay/{base}') if args.no_docs: override_manifest['documentation'] = False + if args.sysusers: + override_manifest['sysusers'] = 'compose-forced' + override_manifest['check-passwd'] = {'type': 'none'} + override_manifest['check-groups'] = {'type': 'none'} tmp_manifest = None if override_manifest: @@ -148,6 +152,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--cachedir", help="Cache repo metadata and RPMs in specified directory", action='store', default='') build_rootfs.add_argument("--add-dir", help='Copy dir contents into the target', action='append', default=[], metavar='DIR') build_rootfs.add_argument("--no-docs", help="Don't install documentation", action='store_true') + build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From 7ba4e7c33f3a40f5aa11eadaa223fb30f6fa7cfe Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 14 Jul 2025 19:11:55 +0000 Subject: [PATCH 157/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250714.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index aa71620..1e84a71 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index c65bfa3..d84bd2b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index ce4295d..f90029f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 4758532..cf321d3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0fe7f62..10b2378 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index e0dacda..73166a9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c1be6d2..f621ae8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index cea4ec4..72181dc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index f8c6628..d7c13e1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 60bc8d7..1d9c95e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index cc24fe5..889cd76 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index d95f741..9f57853 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250713.n.0@sha256:ef5228c6bf183604186241a91cb15b8e6779b8ebd6d27beb91f0185da55670a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 96d477772f45fc2beee08ceeaf5ca69e07fa9858 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 15 Jul 2025 02:18:27 +0000 Subject: [PATCH 158/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250715.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 487e926..bb706b6 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index de8fdbd..6c6ae54 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 3593df2..be407f8 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 0448c64..f79631c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index c36ec36..fe384ec 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 110e580..a8e665f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index b9e128a..e8315c0 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index c7b41fa..c43326f 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 274c36f..23747fa 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 06dc117..45322e5 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 7a6df9d..c3ec07f 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index aeb37dd..e94077e 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250714.0@sha256:60ca448a4a59cfd11f09366b5f794d03ec2691ead6574c5634d68bdc01405e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f70cc9d7b0f0dcceac9fb8ce018c4c740fbc9e8c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 15 Jul 2025 03:39:20 +0000 Subject: [PATCH 159/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250715.0 docker digest to f82ef73 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index bb706b6..77d7622 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 6c6ae54..c72b476 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index be407f8..0ff11da 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index f79631c..4ee92d2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index fe384ec..cb26ead 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index a8e665f..e4013b7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index e8315c0..6253502 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index c43326f..1023153 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 23747fa..e320864 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 45322e5..db83abd 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index c3ec07f..899455c 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index e94077e..0bae68b 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:0cfff82c673b125e32d5843dec55758df98e4c19005a12862aebc3cf172e75aa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4eb52e548382ab4cd2a48b5674214d998f57bcb1 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 15 Jul 2025 14:32:23 -0400 Subject: [PATCH 160/697] bootc-base-imagectl: add --nobody-99 for use with --sysusers The `nobody` user/group is special and can't be driven from a sysusers dropin because Fedora's systemd has a compiled-in default value for naming the overflow user that same name and that always takes precedence. The problem is that due to legacy and cargo-culting, we have to deal with a bunch of systems with the `nobody` user set to 99:99 that we can't just ignore. We need to migrate those, but for now at least to make `--sysusers` usable in these environments, let's add a new hidden `--nobody-99` option which defines _only_ that entry in the hardcoded passwd/group. This _is_ respected by systemd-sysusers. See also: https://github.com/coreos/fedora-coreos-tracker/issues/1201 See also: https://github.com/systemd/systemd/issues/7717 --- bootc-base-imagectl | 5 +++-- minimal/check-passwd-nobody.yaml | 6 ++++++ minimal/check-passwd.yaml | 6 ++++++ minimal/group-nobody | 4 ++++ minimal/manifest.yaml | 3 +++ minimal/passwd-nobody | 4 ++++ minimal/postprocess-conf.yaml | 17 +++++++++++------ 7 files changed, 37 insertions(+), 8 deletions(-) create mode 100644 minimal/check-passwd-nobody.yaml create mode 100644 minimal/check-passwd.yaml create mode 100644 minimal/group-nobody create mode 100644 minimal/passwd-nobody diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 446d931..b20077b 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -50,8 +50,8 @@ def run_build_rootfs(args): override_manifest['documentation'] = False if args.sysusers: override_manifest['sysusers'] = 'compose-forced' - override_manifest['check-passwd'] = {'type': 'none'} - override_manifest['check-groups'] = {'type': 'none'} + passwd_mode = 'nobody' if args.nobody_99 else 'none' + override_manifest['variables'] = {'passwd_mode': passwd_mode} tmp_manifest = None if override_manifest: @@ -153,6 +153,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--add-dir", help='Copy dir contents into the target', action='append', default=[], metavar='DIR') build_rootfs.add_argument("--no-docs", help="Don't install documentation", action='store_true') build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') + build_rootfs.add_argument("--nobody-99", help=argparse.SUPPRESS, action='store_true') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) diff --git a/minimal/check-passwd-nobody.yaml b/minimal/check-passwd-nobody.yaml new file mode 100644 index 0000000..b7d3ba3 --- /dev/null +++ b/minimal/check-passwd-nobody.yaml @@ -0,0 +1,6 @@ +check-passwd: + type: "file" + filename: "passwd-nobody" +check-groups: + type: "file" + filename: "group-nobody" diff --git a/minimal/check-passwd.yaml b/minimal/check-passwd.yaml new file mode 100644 index 0000000..3af2114 --- /dev/null +++ b/minimal/check-passwd.yaml @@ -0,0 +1,6 @@ +check-passwd: + type: "file" + filename: "passwd" +check-groups: + type: "file" + filename: "group" diff --git a/minimal/group-nobody b/minimal/group-nobody new file mode 100644 index 0000000..f2d71b6 --- /dev/null +++ b/minimal/group-nobody @@ -0,0 +1,4 @@ +# this is used with the --nobody-99 option for backwards compatibility with +# systems that had nobody set to 99 +nobody:x:99: +nfsnobody:x:65534: diff --git a/minimal/manifest.yaml b/minimal/manifest.yaml index 544447b..646dc26 100644 --- a/minimal/manifest.yaml +++ b/minimal/manifest.yaml @@ -3,6 +3,9 @@ metadata: edition: "2024" +variables: + passwd_mode: full + # Be minimal recommends: false diff --git a/minimal/passwd-nobody b/minimal/passwd-nobody new file mode 100644 index 0000000..44d2866 --- /dev/null +++ b/minimal/passwd-nobody @@ -0,0 +1,4 @@ +# this is used with the --nobody-99 option for backwards compatibility with +# systems that had nobody set to 99 +nobody:x:99:99:Kernel Overflow User:/:/usr/sbin/nologin +nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/usr/sbin/nologin diff --git a/minimal/postprocess-conf.yaml b/minimal/postprocess-conf.yaml index b1f6f95..6c3894a 100644 --- a/minimal/postprocess-conf.yaml +++ b/minimal/postprocess-conf.yaml @@ -24,9 +24,14 @@ etc-group-members: - tss # https://issues.redhat.com/browse/BIFROST-618 - adm -check-passwd: - type: "file" - filename: "passwd" -check-groups: - type: "file" - filename: "group" +conditional-include: + - if: passwd_mode == "full" + include: check-passwd.yaml + - if: passwd_mode == "nobody" + include: check-passwd-nobody.yaml + - if: passwd_mode == "none" + include: + check-passwd: + type: "none" + check-groups: + type: "none" From 9d300a3741ef591ffccba42541a34b46c011329e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 15 Jul 2025 22:04:26 +0000 Subject: [PATCH 161/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250715.n.2 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 1e84a71..f556a53 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index d84bd2b..ced1672 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index f90029f..60fd934 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index cf321d3..1fc5a21 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 10b2378..1a9f7ca 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 73166a9..96c98fa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index f621ae8..0902869 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 72181dc..5aaf0f2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index d7c13e1..105b4aa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1d9c95e..99c3201 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 889cd76..a7768bf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 9f57853..57f9dab 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250714.n.0@sha256:71d2f8c8d2ed1c448c4bcd3b6af731d3e5f8e310abfc7836a6d5983ba32b253d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0b25ce580f40531a01db88fa01f6b2175b0a794f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 16 Jul 2025 02:45:24 +0000 Subject: [PATCH 162/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250716.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 77d7622..0009b9f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c72b476..b1fd2ea 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 0ff11da..ddeef8d 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 4ee92d2..c7f8588 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index cb26ead..adfdc05 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index e4013b7..6135826 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 6253502..40cb111 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 1023153..d657dad 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index e320864..7d52436 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index db83abd..68b877b 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 899455c..86b37cb 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 0bae68b..cceeb8b 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250715.0@sha256:f82ef73cb21262f35874eeac9b32ba196637dbef9f91e34abf6668b694742c46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b8deaebb6129b55e231dd1b6d0f03091188aa9e5 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 16 Jul 2025 08:55:13 +0000 Subject: [PATCH 163/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250716.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index f556a53..dbd370a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index ced1672..8c324f5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 60fd934..8d94209 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1fc5a21..fc791a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 1a9f7ca..6c700b8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 96c98fa..6f33c3b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 0902869..a1b7504 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5aaf0f2..030e745 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 105b4aa..e0519e4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 99c3201..4d2a6ce 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a7768bf..d31b5c2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 57f9dab..6893d86 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250715.n.2@sha256:2ca0c4f8f504a422261d20071a9e2d6503e6b24adb1691320934f8e8d7cae64e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5266dbfbd5db63cf162c890721a76be68eec8e46 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 17 Jul 2025 02:21:40 +0000 Subject: [PATCH 164/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250717.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 0009b9f..e4e4d0d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b1fd2ea..b30f571 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ddeef8d..a177cb2 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index c7f8588..48c2476 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index adfdc05..a61491c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 6135826..befde5d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 40cb111..05dfe3a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d657dad..2bb41e1 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 7d52436..a41655a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 68b877b..0e6621c 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 86b37cb..1d7f267 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index cceeb8b..755b785 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250716.0@sha256:7de277458069e4d334e981cdb6b1bbd914390215c3f05adf1d5789eedcfa89d3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2e07fe65423ae555b2ed15cbf6897423b1433ecc Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 17 Jul 2025 17:32:41 +0000 Subject: [PATCH 165/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250717.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index dbd370a..d725674 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 8c324f5..3f17e82 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 8d94209..958e4d0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index fc791a1..2ad3678 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6c700b8..853db44 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 6f33c3b..639ff96 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a1b7504..e0c7fc9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 030e745..3a197a3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index e0519e4..d08bef5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4d2a6ce..e07dda3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index d31b5c2..425f865 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 6893d86..083edf2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250716.n.0@sha256:75eb4a76ea8e8276c57263102da908e68e680bc29539bb187a5d59ad939a45c5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 026964d4e37e06539d96a426a1051eb0fdbf266c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 18 Jul 2025 02:38:18 +0000 Subject: [PATCH 166/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250718.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index e4e4d0d..4379304 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b30f571..127c686 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index a177cb2..c501af5 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 48c2476..61941e7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index a61491c..00ffd7b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index befde5d..6334036 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 05dfe3a..e6d9d5c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 2bb41e1..08ac78b 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index a41655a..ac7cf29 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 0e6621c..e55ba74 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1d7f267..b764a77 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 755b785..4af92fe 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250717.0@sha256:a12aaed01bc8e5926579c1488ff82627429083696a54d60c8bfa9e965e3637e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e509ad2fca3030d85540b42932bb036fec1a9e58 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 18 Jul 2025 08:10:21 +0000 Subject: [PATCH 167/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250718.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d725674..a56582b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 3f17e82..07ea819 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 958e4d0..5bcd9f9 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2ad3678..038b97e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 853db44..cabcea1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 639ff96..cac6c90 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e0c7fc9..4ec777c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3a197a3..db8310f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index d08bef5..0804f89 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e07dda3..71c84da 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 425f865..65d26c6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 083edf2..ef634c6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250717.n.1@sha256:253e5090b6f8b5c8cbd7a1b8b92aab0effe80f1ef61c64b27ac2bb569607c08a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ef5ab22c32684739c0964aade152f4371a6e2776 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 19 Jul 2025 22:26:34 +0000 Subject: [PATCH 168/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250719.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 4379304..15aa333 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 127c686..bd21b36 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index c501af5..0239298 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 61941e7..8f73919 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 00ffd7b..607ceb3 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 6334036..84abf3a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index e6d9d5c..a5467d6 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 08ac78b..d936fe6 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index ac7cf29..8b31a2d 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e55ba74..f7d117a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b764a77..5fc5563 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 4af92fe..d7034a9 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250718.0@sha256:baef3d903542f1ef6d2e77badff2b6f4f46c574a17465463578499cd3e49f27c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8f7dcde26437b264f0be6a4fc52565f5b7d254a2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 20 Jul 2025 02:10:49 +0000 Subject: [PATCH 169/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250720.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 15aa333..6b6119b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index bd21b36..cf10b27 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 0239298..a4e261f 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 8f73919..c50c813 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 607ceb3..414ff33 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 84abf3a..119a280 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index a5467d6..49e3e58 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d936fe6..456d73a 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8b31a2d..89dd441 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index f7d117a..79319a1 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 5fc5563..1f8ba71 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index d7034a9..c7c1070 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250719.1@sha256:efb638df459d93486eec92826ec98a34a5ee9faaa164068d3370fffcab67537f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2098396a5a8fa60318787cd74b60570709c8f902 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 21 Jul 2025 08:32:25 +0000 Subject: [PATCH 170/697] chore(config): migrate config renovate.json --- renovate.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/renovate.json b/renovate.json index 716adcc..184be10 100644 --- a/renovate.json +++ b/renovate.json @@ -16,7 +16,7 @@ "packageRules": [ { "matchPackageNames": [ - "/^quay.io\/bootc-devel\/tekton-catalog\//" + "/^quay.io/bootc-devel/tekton-catalog//" ], "enabled": true, "groupName": "Konflux references", @@ -54,7 +54,7 @@ "datasourceTemplate": "docker" } ], - "baseBranches": [ + "baseBranchPatterns": [ "main", "f40", "f41" @@ -62,7 +62,7 @@ "packageRules": [ { "matchPackageNames": [ - "/quay.io\/bootc-devel\/fedora-bootc-rawhide-compose/" + "/quay.io/bootc-devel/fedora-bootc-rawhide-compose/" ], "groupName": "Fedora rawhide compose dependencies", "groupSlug": "fedora-rawhide-compose-dependencies", @@ -73,7 +73,7 @@ }, { "matchPackageNames": [ - "/quay.io\/bootc-devel\/fedora-bootc-42-compose/" + "/quay.io/bootc-devel/fedora-bootc-42-compose/" ], "groupName": "Fedora 42 compose dependencies", "groupSlug": "fedora-42-compose-dependencies", @@ -84,7 +84,7 @@ }, { "matchPackageNames": [ - "/quay.io\/bootc-devel\/fedora-bootc-41-compose/" + "/quay.io/bootc-devel/fedora-bootc-41-compose/" ], "groupName": "Fedora 41 compose dependencies", "groupSlug": "fedora-41-compose-dependencies", @@ -95,7 +95,7 @@ }, { "matchPackageNames": [ - "/quay.io\/bootc-devel\/fedora-bootc-40-compose/" + "/quay.io/bootc-devel/fedora-bootc-40-compose/" ], "groupName": "Fedora 40 compose dependencies", "groupSlug": "fedora-40-compose-dependencies", From c03ad7ef750647bc40fa5abd1d614689500acb16 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 21 Jul 2025 11:24:37 -0400 Subject: [PATCH 171/697] tests: add test for --sysusers Exercise the `--sysusers` path added in https://gitlab.com/fedora/bootc/base-images/-/merge_requests/242. --- .gitlab-ci.yml | 1 + tests/Containerfile.test-sysusers | 39 +++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 tests/Containerfile.test-sysusers diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f33590..c4c2955 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,3 +44,4 @@ standard-build-and-test: (cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc) cd tests buildah build -f Containerfile.test-derive --no-cache -t localhost/fedora-bootc-derived ${PRIV_ARGS} . + buildah build -f Containerfile.test-sysusers --no-cache -t localhost/fedora-bootc-derived ${PRIV_ARGS} . diff --git a/tests/Containerfile.test-sysusers b/tests/Containerfile.test-sysusers new file mode 100644 index 0000000..53e255b --- /dev/null +++ b/tests/Containerfile.test-sysusers @@ -0,0 +1,39 @@ +# This test case exercises --sysusers. +FROM quay.io/fedora/fedora-bootc:rawhide as repos + +# This is intentionally a locally built image +FROM localhost/fedora-bootc as builder +RUN --mount=type=bind,from=repos,src=/,dst=/repos,rw < overlay/usr/lib/sysusers.d/00-chrony.conf < Date: Mon, 21 Jul 2025 15:45:36 -0400 Subject: [PATCH 172/697] bootc-base-imagectl: add --repo This is analogous to the dnf option of the same name, available in both dnf4 and dnf5. It has the same semantics as rpm-ostree's `repos` key, so we can map it directly. This will make it easier in CoreOS-land to inject our own repos and control enablement declaratively rather than have to fiddle with repo files directly. Note also that the `config-manager` dnf plugin is not installed by default in the base bootc image, and I would rather not have to install that for each compose. --- bootc-base-imagectl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index b20077b..f5315ee 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -52,6 +52,8 @@ def run_build_rootfs(args): override_manifest['sysusers'] = 'compose-forced' passwd_mode = 'nobody' if args.nobody_99 else 'none' override_manifest['variables'] = {'passwd_mode': passwd_mode} + if args.repo: + override_manifest['repos'] = args.repo tmp_manifest = None if override_manifest: @@ -154,6 +156,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--no-docs", help="Don't install documentation", action='store_true') build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') build_rootfs.add_argument("--nobody-99", help=argparse.SUPPRESS, action='store_true') + build_rootfs.add_argument("--repo", help="Enable specific repositories only", action='append', default=[], metavar='REPO') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From 512c502e7cfbbd57beedd57b27cc0c36dc96cabf Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 22 Jul 2025 15:36:24 +0000 Subject: [PATCH 173/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250722.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 6b6119b..2e860ba 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index cf10b27..2d4b829 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index a4e261f..84084bf 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index c50c813..4abad52 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 414ff33..da6d0c3 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 119a280..2600565 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 49e3e58..70a6119 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 456d73a..4f4d81c 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 89dd441..088dbeb 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 79319a1..a08bd39 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1f8ba71..78ee5ef 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index c7c1070..52ccfab 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250720.0@sha256:35258ee41c0f4fe287e95b51db57ee9e36f6f81387ba05ec30718545b7b00c17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7e57ce0843599bcc7d8af102ce9306a141fceca9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 28 Jul 2025 20:09:01 +0000 Subject: [PATCH 174/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250728.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index a56582b..f029d8d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 07ea819..139c4de 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 5bcd9f9..602317d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 038b97e..b3df2e3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index cabcea1..0933a0a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index cac6c90..bb7357e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 4ec777c..0c0482d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index db8310f..9c741f5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 0804f89..0037272 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 71c84da..a6e2183 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 65d26c6..c750fc7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ef634c6..72128c1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250718.n.0@sha256:5a69046b81e2120777edec95e86a62e70e8690f044411e1506b97aef7cdf902d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8f0d0a04164fefb64f8cf131f5a027502fa9fd5d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 29 Jul 2025 07:54:57 +0000 Subject: [PATCH 175/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250729.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index f029d8d..6cc4b3e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 139c4de..1af88fe 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 602317d..3088cc4 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index b3df2e3..1a6f902 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0933a0a..fa6af6a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index bb7357e..6934802 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 0c0482d..9018321 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9c741f5..df617b3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 0037272..50367fc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a6e2183..c25735c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index c750fc7..4eb2a0d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 72128c1..2219faf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250728.n.1@sha256:4b9c6de41f1707f2fe30cd2b103054aa0d29d357254823d66456020da6f00841 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 087946f0e1ee1301fef0ab376b847563f4931a15 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 31 Jul 2025 04:33:55 +0000 Subject: [PATCH 176/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250731.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2e860ba..647f5f3 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 2d4b829..bcac475 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 84084bf..49dda78 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 4abad52..6e46a1b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index da6d0c3..580d8f9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 2600565..3dbc711 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 70a6119..7b17580 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 4f4d81c..456e338 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 088dbeb..670df91 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index a08bd39..2a3e48a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 78ee5ef..ab04832 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 52ccfab..1f44a1e 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250722.0@sha256:4ae39f2892cd2bc7ca10fe8f9a70e7885375f737ac22ac65865dfd11a03447e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b7116e8f859928c093016824ba55ad4395e2fc43 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 31 Jul 2025 12:41:50 +0000 Subject: [PATCH 177/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250731.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 6cc4b3e..6e39160 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 1af88fe..1d658fa 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 3088cc4..369c814 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1a6f902..1cc3bfb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index fa6af6a..7c3d1bf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 6934802..7090a5c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9018321..6a72998 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index df617b3..9525e10 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 50367fc..fdbb609 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c25735c..e1473e6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 4eb2a0d..ca5f538 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 2219faf..e83c937 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250729.n.0@sha256:9662db38566358ade02241c1194db96c3f0235a01a1c588d487e237a7d8fbece + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9ee7c67f2ce86578d708a753f3621380e7c70a15 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 31 Jul 2025 18:47:57 +0000 Subject: [PATCH 178/697] chore(deps): update konflux references to e44129e Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 647f5f3..50b6c07 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index bcac475..43f652b 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 49dda78..45c5b3e 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 6e46a1b..cc4f72d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 580d8f9..548005e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -52,7 +52,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3dbc711..e87b5ee 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 7b17580..d1cfee9 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 456e338..a9db359 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -50,7 +50,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 670df91..8bf0bc1 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2a3e48a..72bf39e 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index ab04832..7f43a81 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 1f44a1e..d467d46 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 6e39160..2085b7e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 1d658fa..7ce7094 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 369c814..3aa2b8e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1cc3bfb..a34dab5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 7c3d1bf..3f5aed3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -52,7 +52,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 7090a5c..086bcfa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6a72998..af2cdce 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9525e10..635f137 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -50,7 +50,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index fdbb609..00b1504 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e1473e6..df475fa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index ca5f538..cfe0fa3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index e83c937..07dd893 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a39bc3e36b697385b8e5fb69d8257d3a58cb8199eab5ead8f265ae5ad1f2bbc2 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 359c4c04a96d169bd523236b550f2e4db064c16d Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 29 Jul 2025 17:05:15 -0400 Subject: [PATCH 179/697] Containerfile: use cache again We dropped the cache line in df45d53 because it wasn't being used and also turned out to require some upstream changes [1] to be useful. Now that rpm-ostree-2025.9 has been released let's default to using caching again, which will help improve the local developer workflow by allowing for iterating on builds and not having to re-download RPMs each cycle. [1] https://github.com/coreos/rpm-ostree/pull/5391 --- Containerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 9c77144..1baebfa 100644 --- a/Containerfile +++ b/Containerfile @@ -28,7 +28,8 @@ ARG MANIFEST=fedora-standard COPY . /src WORKDIR /src RUN rm -vf /src/*.repo -RUN --mount=type=bind,rw,from=repos,src=/,dst=/repos </dev/null # Run the build script in the same way we expect custom images to do, and also # "re-inject" the manifests into the target, so secondary container builds can use it. -/usr/libexec/bootc-base-imagectl build-rootfs --reinject --manifest=${MANIFEST} /repos /target-rootfs +/usr/libexec/bootc-base-imagectl build-rootfs \ + --cachedir=/cache --reinject --manifest=${MANIFEST} /repos /target-rootfs EORUN # This pulls in the rootfs generated in the previous step From 94013f0cb9b0cb743564d2c74c9936849494ce5b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 1 Aug 2025 10:38:46 +0000 Subject: [PATCH 180/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250801.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 50b6c07..3f1d740 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 43f652b..07d5d49 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 45c5b3e..7dcfec0 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index cc4f72d..23f265e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 548005e..ec029e2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index e87b5ee..d16ff05 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index d1cfee9..117950c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index a9db359..de238e2 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8bf0bc1..d8f9b0f 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 72bf39e..9463d9b 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 7f43a81..a3db2c4 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index d467d46..2d11b04 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250731.0@sha256:db361a224ad75c563a5e688e66b050b894466d021da347656cb609e1238e0673 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8484dcfbf6df9c26e2a4a5b5a1fe253f0018def5 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 1 Aug 2025 12:41:41 +0000 Subject: [PATCH 181/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250801.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 2085b7e..49dd32a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 7ce7094..facc361 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 3aa2b8e..770548d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a34dab5..f12d8e0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3f5aed3..bae1e57 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 086bcfa..f664946 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index af2cdce..9a9cbea 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 635f137..df6aaa3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 00b1504..68a9e81 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index df475fa..4d9688a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index cfe0fa3..19c6cab 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 07dd893..3b37a15 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250731.n.0@sha256:0720df0b17844e8b50c9c00af149f737418f04a513376b91eb37557cb5c6d380 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c100cf0959bde783f2ab944a80c8ec75c98467ee Mon Sep 17 00:00:00 2001 From: Anish Bhatt Date: Sun, 3 Aug 2025 14:22:56 -0700 Subject: [PATCH 182/697] Silence permissions warning on bootc-generic-growpart.service --- standard/generic-growfs.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/standard/generic-growfs.yaml b/standard/generic-growfs.yaml index 5f4e0af..0604cdb 100644 --- a/standard/generic-growfs.yaml +++ b/standard/generic-growfs.yaml @@ -8,5 +8,6 @@ postprocess: - | #!/bin/bash set -xeuo pipefail + chmod 0644 /usr/lib/systemd/system/bootc-generic-growpart.service mkdir -p /usr/lib/systemd/system/local-fs.target.wants ln -s ../bootc-generic-growpart.service /usr/lib/systemd/system/local-fs.target.wants/bootc-generic-growpart.service From 995c9baa9301cff4782d64cc821da53c2af17886 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 3 Aug 2025 22:35:23 +0000 Subject: [PATCH 183/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250803.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 49dd32a..f4ce8c0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index facc361..815ec25 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 770548d..8329b12 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index f12d8e0..4380788 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index bae1e57..5e9ecaa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index f664946..3450da2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9a9cbea..7ee38ba 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index df6aaa3..891b266 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 68a9e81..8358cf3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4d9688a..2ea0d49 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 19c6cab..bac3b4c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 3b37a15..b69110c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250801.n.0@sha256:26e95b09c9999d242bb5ef5a21bd5ab304e3cf724e4a36ba920f931205764381 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ddc72cea9dbb857cf6eab1a044b6f53160da4027 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 4 Aug 2025 00:34:51 +0000 Subject: [PATCH 184/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250803.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3f1d740..82f845c 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 07d5d49..88c7ab3 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 7dcfec0..f99cf2a 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 23f265e..4ea4fe1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index ec029e2..656eac4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index d16ff05..8677e09 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 117950c..513b224 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index de238e2..b786e3b 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index d8f9b0f..8da6d84 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 9463d9b..1c6b53f 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index a3db2c4..ed6f278 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2d11b04..4171f76 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250801.0@sha256:906e41132584d4bef60ddd64f006890e80c9e367ceede01dfa4931049191ecb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a4bb4f3da49f54c1c7208a2bfe62c00aaf816c68 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 4 Aug 2025 17:46:26 +0000 Subject: [PATCH 185/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250804.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index f4ce8c0..7e089e0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 815ec25..4a30882 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 8329b12..7b55aec 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 4380788..30ce521 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5e9ecaa..dbf923e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 3450da2..bd80ab9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 7ee38ba..93a005a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 891b266..325a8fd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 8358cf3..2566caa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 2ea0d49..6761907 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index bac3b4c..44e3c0c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b69110c..496cd7e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250803.n.0@sha256:f6e5429723c1308b8136fbfe05f51951844ba3d072fd64100fa4610885fa1121 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b1f7a1f759f55d41933063a4d965332b0e350a1e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 5 Aug 2025 08:36:52 +0000 Subject: [PATCH 186/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250805.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 7e089e0..0747345 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 4a30882..790c53c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 7b55aec..2928419 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 30ce521..b88a1a9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index dbf923e..01a36ab 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index bd80ab9..cfd1a5a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 93a005a..eea6dc6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 325a8fd..3e89cb1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 2566caa..b8ad98f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 6761907..1898e28 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 44e3c0c..dc64604 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 496cd7e..305d16b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250804.n.0@sha256:7544eca7b4ee23b3f51f75d3e9831ce66b1fb78369cdfbbc7bea254caf9b9fa5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6af3341f8037c872985e5b0e8a92e9470b18ddb7 Mon Sep 17 00:00:00 2001 From: Huijing Hei Date: Wed, 6 Aug 2025 10:21:57 +0800 Subject: [PATCH 187/697] Enable `bootloader-update.service` since F43 Required by https://fedoraproject.org/wiki/Changes/AutomaticBootloaderUpdatesBootc Inspired by Dusty's comment https://github.com/coreos/fedora-coreos-config/pull/3653#issuecomment-3156107015 `bootloader-update.service` is shipped in `rust-bootupd-0.2.26-3` (https://src.fedoraproject.org/rpms/rust-bootupd/c/28a98663eabd21cb9e9ff334700d554d36c0b0aa?branch=rawhide) but it is disabled by default. Track issue: https://github.com/coreos/fedora-coreos-tracker/issues/1468 --- minimal/systemd-presets.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/minimal/systemd-presets.yaml b/minimal/systemd-presets.yaml index 3f0ce69..fee068a 100644 --- a/minimal/systemd-presets.yaml +++ b/minimal/systemd-presets.yaml @@ -9,6 +9,16 @@ postprocess: # https://github.com/coreos/fedora-coreos-tracker/issues/1896#issuecomment-2848251507 disable dnf-makecache.timer EOF + # Enable bootloader-update.service on F43+. + # https://github.com/coreos/fedora-coreos-tracker/issues/1468#issuecomment-2996654547 + # https://fedoraproject.org/wiki/Changes/AutomaticBootloaderUpdatesBootc + - | + #!/bin/bash + set -xeuo pipefail + source /usr/lib/os-release + if [ $ID == "fedora" ] && [ ${VERSION_ID} -ge 43 ]; then + echo "enable bootloader-update.service" >> /usr/lib/systemd/system-preset/85-bootc.preset + fi # Undo RPM scripts enabling units; we want the presets to be canonical # https://github.com/projectatomic/rpm-ostree/issues/1803 - | From a94658fbc4930b0d6acef31b8f8ace6823ffc8af Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 6 Aug 2025 08:42:30 +0000 Subject: [PATCH 188/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250806.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 0747345..ee25634 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 790c53c..013fdcf 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 2928419..ba547f2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index b88a1a9..4072831 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 01a36ab..a181d3d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index cfd1a5a..204b7f2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index eea6dc6..dbd18f9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3e89cb1..cd5e3eb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index b8ad98f..fd87a90 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1898e28..f824591 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index dc64604..339d63b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 305d16b..c0bfb81 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250805.n.0@sha256:1c003f079a5495f70e8b70df5636bdf250f81a53551a17625c607b51d1c52e28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8064d31bcd4a624a37d929dd389a3efb9a5b4975 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 7 Aug 2025 18:35:21 +0000 Subject: [PATCH 189/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250807.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index ee25634..d49841f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 013fdcf..c3f465e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index ba547f2..d5db5c6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 4072831..0be7ca5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a181d3d..95af5ad 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 204b7f2..318fb4c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index dbd18f9..e2dfabe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index cd5e3eb..62331e3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index fd87a90..4b6bfcc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index f824591..acf5e79 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 339d63b..d8f04a7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index c0bfb81..553081c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250806.n.0@sha256:5969521579720af2dec7cba67d211a0fa7ec5b377a6363872c27f81f56031a0d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f68cf62052abba42f95d119421e5e70122f71122 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 8 Aug 2025 08:34:56 +0000 Subject: [PATCH 190/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250808.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d49841f..25e03e6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index c3f465e..d8c9485 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index d5db5c6..2017005 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0be7ca5..d199859 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 95af5ad..e41dda3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 318fb4c..db35180 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e2dfabe..7848a49 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 62331e3..4e630f3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 4b6bfcc..4351a17 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index acf5e79..cd1d89c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index d8f04a7..bf22a5a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 553081c..ff80b7f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250807.n.1@sha256:5c9df211c6f5de4b85f9536446bf3a41cd3e47222c336702d446e38f21ec459c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e02d77fa7becda8f7400cdb8f2a44750064fd3ab Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 10 Aug 2025 22:32:52 +0000 Subject: [PATCH 191/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250810.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 25e03e6..59ea509 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index d8c9485..6be3f48 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 2017005..a209670 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index d199859..204abe3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index e41dda3..413f156 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index db35180..a3b06c1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 7848a49..ae16743 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 4e630f3..48225bc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 4351a17..6b30920 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index cd1d89c..9ed72fe 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index bf22a5a..94c3afe 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ff80b7f..e45bb0c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250808.n.0@sha256:f268d1f26f429ab9ba14c03597da4c62ec34750df31c5ed03b5b7796c5002395 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c34a29bc539eaaab01eae79f23c855163015e689 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 11 Aug 2025 08:33:53 +0000 Subject: [PATCH 192/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250811.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 59ea509..8606b0c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 6be3f48..be8c848 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index a209670..4abee1c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 204abe3..822b335 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 413f156..500e958 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a3b06c1..ee82190 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ae16743..61229b7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 48225bc..69200a2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 6b30920..6decf6b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 9ed72fe..828d4e1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 94c3afe..3b0c255 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index e45bb0c..823d751 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250810.n.0@sha256:3405915dacb4b367df3a96fe6aa7cc923887c4e364a5b131a502fe9f59800054 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2cfaaf77885da4df6ebc158250381ef725822318 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 12 Aug 2025 12:38:24 +0200 Subject: [PATCH 193/697] initramfs: Default to DRACUT_NO_XATTR=1 See the linked issue https://github.com/dracut-ng/dracut-ng/issues/1561 Signed-off-by: Colin Walters --- minimal/initramfs.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/minimal/initramfs.yaml b/minimal/initramfs.yaml index a650e34..fc1fdc2 100644 --- a/minimal/initramfs.yaml +++ b/minimal/initramfs.yaml @@ -7,6 +7,9 @@ postprocess: cat > /usr/lib/dracut/dracut.conf.d/20-bootc-base.conf << 'EOF' # We want a generic image; hostonly makes no sense as part of a server side build hostonly=no + # Dracut will always fail to set security.selinux xattrs at build time + # https://github.com/dracut-ng/dracut-ng/issues/1561 + export DRACUT_NO_XATTR=1 add_dracutmodules+=" kernel-modules dracut-systemd systemd-initrd base ostree " EOF cat > /usr/lib/dracut/dracut.conf.d/22-bootc-generic.conf << 'EOF' From 894171f45029081c59a150901541e50584b4b87f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 12 Aug 2025 13:38:55 +0000 Subject: [PATCH 194/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250812.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 8606b0c..473b3b6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index be8c848..486612d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 4abee1c..c4f0c60 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 822b335..8e7907c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 500e958..317a485 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index ee82190..eba59f9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 61229b7..53fd8ee 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 69200a2..444d0eb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 6decf6b..cf4ee16 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 828d4e1..1bb4f24 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3b0c255..9709153 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 823d751..b541156 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250811.n.0@sha256:19d8373f3b8194db2b85de26ffec19c45a5ab3b1e23f20c160af34e7cf1e0b17 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7828d736450248b9d74310cad0da06883d6d23f8 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 13 Aug 2025 11:16:06 +0200 Subject: [PATCH 195/697] base-imagectl: Ensure RHSM/subscription-manager is initialized This automates the workaround for https://issues.redhat.com/browse/RHEL-108989 This *should* eventually be fixed when we move to using `dnf` to do installs. --- bootc-base-imagectl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index f5315ee..0eff4aa 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -25,6 +25,9 @@ def run_build_rootfs(args): else: raise Exception(f"manifest not found: {args.manifest}") + # A fix for https://issues.redhat.com/browse/RHEL-108989 + subprocess.check_call(['dnf', 'repolist'], stdout=subprocess.DEVNULL) + rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] override_manifest = {} From 960c231e614ef1726681618a2f4573af17d0e6d2 Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Thu, 14 Aug 2025 14:17:53 -0400 Subject: [PATCH 196/697] Add Fedora 43 treefile for branching Add Fedora 43 treefile for branching, delete unused f40 treefile Signed-off-by: Paul Whalen --- fedora-40.yaml => fedora-43.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename fedora-40.yaml => fedora-43.yaml (76%) diff --git a/fedora-40.yaml b/fedora-43.yaml similarity index 76% rename from fedora-40.yaml rename to fedora-43.yaml index 647be5a..9ae0164 100644 --- a/fedora-40.yaml +++ b/fedora-43.yaml @@ -1,7 +1,6 @@ # NB: This treefile is used by the legacy pungi path only to build tier-1. It # will be removed in the future. -releasever: 40 +releasever: 43 repos: - - fedora - - fedora-updates + - fedora-devel include: fedora-bootc.yaml From ae075fe76622b379e05a23a8e89e324fe219591d Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 14 Aug 2025 16:31:19 -0400 Subject: [PATCH 197/697] bootc-base-imagectl: make `--add-dir` use `ostree-override-layers` instead The "override" semantic is closer to what most users expect I think from `--add-dir` rather than having it error out if some files already exist. This makes it closer to how e.g. `COPY` works in Dockerfiles. --- bootc-base-imagectl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 0eff4aa..335e470 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -40,7 +40,7 @@ def run_build_rootfs(args): tmp_ostree_repo = tempfile.mkdtemp(dir='/var/tmp') subprocess.check_call(['ostree', 'init', '--repo', tmp_ostree_repo, '--mode=bare']) rpmostree_argv.append(f"--ostree-repo={tmp_ostree_repo}") - override_manifest['ostree-layers'] = [] + override_manifest['ostree-override-layers'] = [] for dir in args.add_dir: base = os.path.basename(dir) @@ -48,7 +48,7 @@ def run_build_rootfs(args): # capture output to hide commit digest printed subprocess.check_output(['ostree', 'commit', '--repo', tmp_ostree_repo, '-b', f'overlay/{base}', abs, '--owner-uid=0', '--owner-gid=0', '--no-xattrs', '--mode-ro-executables']) - override_manifest['ostree-layers'].append(f'overlay/{base}') + override_manifest['ostree-override-layers'].append(f'overlay/{base}') if args.no_docs: override_manifest['documentation'] = False if args.sysusers: From 815da451bff1016d7b7fdc619f61331a69434679 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 18 Aug 2025 03:33:27 +0000 Subject: [PATCH 198/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250817.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 82f845c..edd4e0b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 88c7ab3..5632ef3 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index f99cf2a..c9f6de5 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 4ea4fe1..66512b8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 656eac4..550587e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 8677e09..3013309 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 513b224..f1db871 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index b786e3b..27235d9 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8da6d84..e3e052c 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 1c6b53f..8fc5d02 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index ed6f278..1b5ed27 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 4171f76..47952b5 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250803.0@sha256:aa50a0a4be6741df99ccb6ea5c7a69b213e40b2c4ba2faabf8c2adcafbe27faa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a70d2e2628f95431775a5359d8521f8f8ba1e261 Mon Sep 17 00:00:00 2001 From: konflux Date: Tue, 19 Aug 2025 07:25:03 +0000 Subject: [PATCH 199/697] Konflux update fedora-bootc-43-iot Signed-off-by: konflux --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 608 ++++++++++++++++++ .tekton/fedora-bootc-43-iot-push.yaml | 605 +++++++++++++++++ 2 files changed, 1213 insertions(+) create mode 100644 .tekton/fedora-bootc-43-iot-pull-request.yaml create mode 100644 .tekton/fedora-bootc-43-iot-push.yaml diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml new file mode 100644 index 0000000..eeb6985 --- /dev/null +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -0,0 +1,608 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-iot-on-pull-request + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:on-pr-{{revision}} + - name: image-expires-after + value: 5d + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-iot + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml new file mode 100644 index 0000000..9e2c73c --- /dev/null +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -0,0 +1,605 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-iot-on-push + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-iot + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From ec02eca9c02df6579d1baa0b1b0728da5b5c1490 Mon Sep 17 00:00:00 2001 From: konflux Date: Tue, 19 Aug 2025 07:25:08 +0000 Subject: [PATCH 200/697] Konflux update fedora-bootc-43-minimal Signed-off-by: konflux --- .../fedora-bootc-43-minimal-pull-request.yaml | 608 ++++++++++++++++++ .tekton/fedora-bootc-43-minimal-push.yaml | 605 +++++++++++++++++ 2 files changed, 1213 insertions(+) create mode 100644 .tekton/fedora-bootc-43-minimal-pull-request.yaml create mode 100644 .tekton/fedora-bootc-43-minimal-push.yaml diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml new file mode 100644 index 0000000..4b16aea --- /dev/null +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -0,0 +1,608 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-minimal-on-pull-request + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:on-pr-{{revision}} + - name: image-expires-after + value: 5d + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml new file mode 100644 index 0000000..d1e21d6 --- /dev/null +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -0,0 +1,605 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-minimal-on-push + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From 9ee1c21e04995e781fb33e4c93593fc24f987199 Mon Sep 17 00:00:00 2001 From: konflux Date: Tue, 19 Aug 2025 07:25:13 +0000 Subject: [PATCH 201/697] Konflux update fedora-bootc-43-minimal-plus Signed-off-by: konflux --- ...ra-bootc-43-minimal-plus-pull-request.yaml | 608 ++++++++++++++++++ .../fedora-bootc-43-minimal-plus-push.yaml | 605 +++++++++++++++++ 2 files changed, 1213 insertions(+) create mode 100644 .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml create mode 100644 .tekton/fedora-bootc-43-minimal-plus-push.yaml diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml new file mode 100644 index 0000000..5c23a6c --- /dev/null +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -0,0 +1,608 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-minimal-plus-on-pull-request + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:on-pr-{{revision}} + - name: image-expires-after + value: 5d + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml new file mode 100644 index 0000000..ee2f66a --- /dev/null +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -0,0 +1,605 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-minimal-plus-on-push + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From a178beb519ff7c44296627e043e6420f87ce526b Mon Sep 17 00:00:00 2001 From: konflux Date: Tue, 19 Aug 2025 07:25:19 +0000 Subject: [PATCH 202/697] Konflux update fedora-bootc-43-standard Signed-off-by: konflux --- ...fedora-bootc-43-standard-pull-request.yaml | 608 ++++++++++++++++++ .tekton/fedora-bootc-43-standard-push.yaml | 605 +++++++++++++++++ 2 files changed, 1213 insertions(+) create mode 100644 .tekton/fedora-bootc-43-standard-pull-request.yaml create mode 100644 .tekton/fedora-bootc-43-standard-push.yaml diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml new file mode 100644 index 0000000..92ff2b3 --- /dev/null +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -0,0 +1,608 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-standard-on-pull-request + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:on-pr-{{revision}} + - name: image-expires-after + value: 5d + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-standard + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml new file mode 100644 index 0000000..86dd4e3 --- /dev/null +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -0,0 +1,605 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "main" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-43-standard-on-push + namespace: bootc-tenant +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} + - name: dockerfile + value: Containerfile + - name: path-context + value: . + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-standard + workspaces: + - name: git-auth + secret: + secretName: '{{ git_auth_secret }}' +status: {} From be93293726c99a564d933eb884a49a59d90ae87a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 19 Aug 2025 09:29:08 +0200 Subject: [PATCH 203/697] chore: use bootc pipelines --- .../fedora-bootc-43-minimal-pull-request.yaml | 620 ++---------------- .tekton/fedora-bootc-43-minimal-push.yaml | 616 ++--------------- ...fedora-bootc-43-minimal-renovate-push.yaml | 66 ++ 3 files changed, 142 insertions(+), 1160 deletions(-) create mode 100644 .tekton/fedora-bootc-43-minimal-renovate-push.yaml diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 4b16aea..290a695 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -8,601 +8,59 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-minimal-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-minimal pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-minimal-on-pull-request - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:on-pr-{{revision}} - - name: image-expires-after - value: 5d + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d1e21d6..5a71749 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -7,599 +7,57 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-minimal-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-minimal pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-minimal-on-push - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-minimal + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml new file mode 100644 index 0000000..e6b9c04 --- /dev/null +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -0,0 +1,66 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-43-minimal-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-minimal + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-43-minimal-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h From 3c6e7cd4cfb9b4d96aa818e7b2f6808ac72e51b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 19 Aug 2025 09:30:48 +0200 Subject: [PATCH 204/697] chore: use bootc pipelines --- ...ra-bootc-43-minimal-plus-pull-request.yaml | 622 ++---------------- .../fedora-bootc-43-minimal-plus-push.yaml | 618 ++--------------- ...a-bootc-43-minimal-plus-renovate-push.yaml | 68 ++ 3 files changed, 148 insertions(+), 1160 deletions(-) create mode 100644 .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 5c23a6c..a84e5e2 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -8,601 +8,61 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-minimal-plus-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-minimal-plus pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-minimal-plus-on-pull-request - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:on-pr-{{revision}} - - name: image-expires-after - value: 5d + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index ee2f66a..30fb7d9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -7,599 +7,59 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-minimal-plus-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-minimal-plus pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-minimal-plus-on-push - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-minimal-plus + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml new file mode 100644 index 0000000..dd6851b --- /dev/null +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -0,0 +1,68 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-minimal-plus + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-43-minimal-plus-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h From a419d44a356f9cb6e4c35ee35e8635206777e92c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 19 Aug 2025 09:33:38 +0200 Subject: [PATCH 205/697] chore: use bootc pipelines --- ...fedora-bootc-43-standard-pull-request.yaml | 624 ++---------------- .tekton/fedora-bootc-43-standard-push.yaml | 620 ++--------------- ...edora-bootc-43-standard-renovate-push.yaml | 70 ++ 3 files changed, 154 insertions(+), 1160 deletions(-) create mode 100644 .tekton/fedora-bootc-43-standard-renovate-push.yaml diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 92ff2b3..7e75a1f 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -8,601 +8,63 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-standard-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-standard pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-standard-on-pull-request - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:on-pr-{{revision}} - - name: image-expires-after - value: 5d + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-standard - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 86dd4e3..393078b 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -7,599 +7,61 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-standard-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-standard pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-standard-on-push - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-standard + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-standard - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml new file mode 100644 index 0000000..a57110c --- /dev/null +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-43-standard-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-standard + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-43-standard-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h From e3f1ac758a3e8361ddee16c3f44fc8994be6d015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Tue, 19 Aug 2025 09:34:07 +0200 Subject: [PATCH 206/697] chore: use bootc pipelines --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 624 ++---------------- .tekton/fedora-bootc-43-iot-push.yaml | 620 ++--------------- .../fedora-bootc-43-iot-renovate-push.yaml | 70 ++ 3 files changed, 154 insertions(+), 1160 deletions(-) create mode 100644 .tekton/fedora-bootc-43-iot-renovate-push.yaml diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index eeb6985..73d7707 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -8,601 +8,63 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-iot-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-iot pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-iot-on-pull-request - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:on-pr-{{revision}} - - name: image-expires-after - value: 5d + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-iot - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 9e2c73c..05cb386 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -7,599 +7,61 @@ metadata: build.appstudio.redhat.com/target_branch: '{{target_branch}}' pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "main" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-43-iot-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 appstudio.openshift.io/component: fedora-bootc-43-iot pipelines.appstudio.openshift.io/type: build name: fedora-bootc-43-iot-on-push - namespace: bootc-tenant spec: params: - name: git-url value: '{{source_url}}' - name: revision value: '{{revision}}' - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 - name: dockerfile value: Containerfile - name: path-context value: . - pipelineSpec: - description: | - This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. - - _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. - This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-iot + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: params: - - description: Source Repository URL - name: git-url - type: string - - default: "" - description: Revision of the Source Repository - name: revision - type: string - - description: Fully Qualified Output Image - name: output-image - type: string - - default: . - description: Path to the source code of an application's component from where - to build image. - name: path-context - type: string - - default: Dockerfile - description: Path to the Dockerfile inside the context specified by parameter - path-context - name: dockerfile - type: string - - default: "false" - description: Force rebuild image - name: rebuild - type: string - - default: "false" - description: Skip checks against built image - name: skip-checks - type: string - - default: "false" - description: Execute the build with network isolation - name: hermetic - type: string - - default: "" - description: Build dependencies to be prefetched by Cachi2 - name: prefetch-input - type: string - - default: "" - description: Image tag expiration time, time values could be something like - 1h, 2d, 3w for hours, days, and weeks, respectively. - name: image-expires-after - type: string - - default: "false" - description: Build a source image. - name: build-source-image - type: string - - default: "false" - description: Add built image into an OCI image index - name: build-image-index - type: string - - default: [] - description: Array of --build-arg values ("arg=value" strings) for buildah - name: build-args - type: array - - default: "" - description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file - name: build-args-file - type: string - - default: "false" - description: Whether to enable privileged mode, should be used only with remote - VMs - name: privileged-nested - type: string - results: - - description: "" - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - description: "" - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - description: "" - name: CHAINS-GIT_URL - value: $(tasks.clone-repository.results.url) - - description: "" - name: CHAINS-GIT_COMMIT - value: $(tasks.clone-repository.results.commit) - tasks: - - name: init - params: - - name: image-url - value: $(params.output-image) - - name: rebuild - value: $(params.rebuild) - - name: skip-checks - value: $(params.skip-checks) - taskRef: - params: - - name: name - value: init - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - - name: kind - value: task - resolver: bundles - - name: clone-repository - params: - - name: url - value: $(params.git-url) - - name: revision - value: $(params.revision) - - name: ociStorage - value: $(params.output-image).git - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - init - taskRef: - params: - - name: name - value: git-clone-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - workspaces: - - name: basic-auth - workspace: git-auth - - name: prefetch-dependencies - params: - - name: input - value: $(params.prefetch-input) - - name: SOURCE_ARTIFACT - value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) - - name: ociStorage - value: $(params.output-image).prefetch - - name: ociArtifactExpiresAfter - value: $(params.image-expires-after) - runAfter: - - clone-repository - taskRef: - params: - - name: name - value: prefetch-dependencies-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - - name: kind - value: task - resolver: bundles - workspaces: - - name: git-basic-auth - workspace: git-auth - - name: netrc - workspace: netrc - - name: build-container - params: - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: PRIVILEGED_NESTED - value: $(params.privileged-nested) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - prefetch-dependencies - taskRef: - params: - - name: name - value: buildah-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-image-index - params: - - name: IMAGE - value: $(params.output-image) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: ALWAYS_BUILD_INDEX - value: $(params.build-image-index) - - name: IMAGES - value: - - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) - runAfter: - - build-container - taskRef: - params: - - name: name - value: build-image-index - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - name: build-source-image - params: - - name: BINARY_IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: BINARY_IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: source-build-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - - name: kind - value: task - resolver: bundles - when: - - input: $(tasks.init.results.build) - operator: in - values: - - "true" - - input: $(params.build-source-image) - operator: in - values: - - "true" - - name: deprecated-base-image-check - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: deprecated-image-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clair-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clair-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: ecosystem-cert-preflight-checks - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: ecosystem-cert-preflight-checks - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-snyk-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-snyk-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: clamav-scan - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: clamav-scan - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-coverity-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE - value: $(params.output-image) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: HERMETIC - value: $(params.hermetic) - - name: PREFETCH_INPUT - value: $(params.prefetch-input) - - name: IMAGE_EXPIRES_AFTER - value: $(params.image-expires-after) - - name: COMMIT_SHA - value: $(tasks.clone-repository.results.commit) - - name: BUILD_ARGS - value: - - $(params.build-args[*]) - - name: BUILD_ARGS_FILE - value: $(params.build-args-file) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - coverity-availability-check - taskRef: - params: - - name: name - value: sast-coverity-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - input: $(tasks.coverity-availability-check.results.STATUS) - operator: in - values: - - success - - name: coverity-availability-check - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: coverity-availability-check - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-shell-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-shell-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: sast-unicode-check - params: - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - - name: CACHI2_ARTIFACT - value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: sast-unicode-check-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - - name: apply-tags - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: apply-tags - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - - name: kind - value: task - resolver: bundles - - name: push-dockerfile - params: - - name: IMAGE - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: IMAGE_DIGEST - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - - name: DOCKERFILE - value: $(params.dockerfile) - - name: CONTEXT - value: $(params.path-context) - - name: SOURCE_ARTIFACT - value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: push-dockerfile-oci-ta - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - - name: kind - value: task - resolver: bundles - - name: rpms-signature-scan - params: - - name: image-url - value: $(tasks.build-image-index.results.IMAGE_URL) - - name: image-digest - value: $(tasks.build-image-index.results.IMAGE_DIGEST) - runAfter: - - build-image-index - taskRef: - params: - - name: name - value: rpms-signature-scan - - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - - name: kind - value: task - resolver: bundles - when: - - input: $(params.skip-checks) - operator: in - values: - - "false" - workspaces: - - name: git-auth - optional: true - - name: netrc - optional: true - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-iot - workspaces: - - name: git-auth - secret: - secretName: '{{ git_auth_secret }}' -status: {} + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml new file mode 100644 index 0000000..9d56d1e --- /dev/null +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-43-iot-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-43 + appstudio.openshift.io/component: fedora-bootc-43-iot + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-43-iot-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} + - name: labels + value: + - org.opencontainers.version=43 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h From 0fae9ec3aa41bf10b2d2fe29828483c348398431 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 19 Aug 2025 11:36:40 +0000 Subject: [PATCH 207/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250819.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index edd4e0b..504edf5 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 5632ef3..fac48eb 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index c9f6de5..75e69be 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 66512b8..fce7505 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 550587e..57bbb69 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3013309..ae686ff 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index f1db871..2fbdb5c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 27235d9..9a43226 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index e3e052c..59a0a48 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8fc5d02..96caf10 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1b5ed27..db06ed9 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 47952b5..1ec7a04 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250817.0@sha256:eec85001fee8028510c8b71efdded4a2fb553ce9d99850c60ddd8154b94ac457 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a3dba2e3051184e473df0e23ea3fc16910c3fd30 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 19 Aug 2025 14:42:24 +0000 Subject: [PATCH 208/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250819.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 473b3b6..1dbabd4 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 486612d..55c64fd 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index c4f0c60..26912c9 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8e7907c..ac57ba7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 317a485..5a6f27c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index eba59f9..c994159 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 53fd8ee..f8204c7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 444d0eb..7a53797 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index cf4ee16..2e508bd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1bb4f24..cb3c4e6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 9709153..0c9c3c9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b541156..cf4f32b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250812.n.0@sha256:a843b4d364f0784a99a7a09a9dd062cce312421f16ab12bdbf98078453ab7c62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2dee1de54ecc75a7c352e55a627cb84350852471 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 20 Aug 2025 10:32:20 +0000 Subject: [PATCH 209/697] chore(deps): update konflux references to ea80d0a Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 504edf5..1a3c98f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index fac48eb..8fec1e2 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 75e69be..2f9889a 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index fce7505..ef54891 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 57bbb69..f0311e8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -52,7 +52,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index ae686ff..e817caa 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 2fbdb5c..eea1da8 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 9a43226..7727520 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -50,7 +50,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 59a0a48..97454df 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 96caf10..3d43525 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index db06ed9..84d3119 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 1ec7a04..681486e 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 73d7707..e874d81 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 05cb386..eadcb11 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 9d56d1e..19fac04 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index a84e5e2..daf6c46 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 30fb7d9..42ddcb0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index dd6851b..7fb752d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 290a695..c44f7b4 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 5a71749..22c9ac3 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index e6b9c04..03315ed 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 7e75a1f..649edd1 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 393078b..b2d4fe2 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index a57110c..afc9d2d 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 1dbabd4..5a30ea1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 55c64fd..2c224ec 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 26912c9..daab927 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ac57ba7..c0aa32b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5a6f27c..0bc82da 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -52,7 +52,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c994159..b123de0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index f8204c7..82f57d6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 7a53797..91dba4f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -50,7 +50,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 2e508bd..28cd6d5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index cb3c4e6..abc31b3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0c9c3c9..36f79ad 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -54,7 +54,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index cf4f32b..d079915 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:e44129e1977e312ae5d0d080fe88a57ea094c9ebdbdcdb9eeef5dd4378c92c63 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 81a6c128e22c82b90857e64d99f6f542b75ec730 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 21 Aug 2025 10:23:58 +0200 Subject: [PATCH 210/697] build: Canonicalize permissions This is a strong mitigation against having things like setuid/setgid or world-writability or world-unreadability leak from the source git clone. Signed-off-by: Colin Walters --- Containerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Containerfile b/Containerfile index 1baebfa..f0d2735 100644 --- a/Containerfile +++ b/Containerfile @@ -26,6 +26,15 @@ ARG MANIFEST=fedora-standard # So copy the source, and delete the hardcoded ones in git, and use the container base # image ones. We can drop the ones commited to git when we hard switch to Containerfile. COPY . /src +# Avoid umask/permission leakage from the outer environment; ref e.g. +# - https://github.com/coreos/coreos-assembler/pull/4277 +# - https://gitlab.com/fedora/bootc/base-images/-/merge_requests/254 +# This invocation preserves only the executable bit, and specifically we want to remove: +# - setuid/setgid +# - world writability +# NOTE: This adds world-readability, which is what we intend here as all the content +# is public; there's no secrets in our container build. +RUN chmod -R a=rX,u+w /src WORKDIR /src RUN rm -vf /src/*.repo RUN --mount=type=cache,rw,id=bootc-base-image-cache,target=/cache \ From 9fd1b5813527b2f9ab7742936c97700c38da3649 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 21 Aug 2025 15:37:18 +0000 Subject: [PATCH 211/697] chore(deps): update pre-commit hook pre-commit/pre-commit-hooks to v6 Signed-off-by: Platform Engineering Bot --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e955059..8b8537c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ --- repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace From 4c4ce91d9a025e507babf5867f52d27f7a8fb07d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 31 Jul 2025 13:03:35 +0200 Subject: [PATCH 212/697] chore: add org.opencontainers.image.version label MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the corresponding `org.opencontainers.image.version` label to container images built by konflux Related: https://gitlab.com/fedora/bootc/tekton-catalog/-/issues/2 Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 3 +++ .tekton/fedora-bootc-42-iot-push.yaml | 3 +++ .tekton/fedora-bootc-42-iot-renovate-push.yaml | 3 +++ .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 3 +++ .tekton/fedora-bootc-42-minimal-plus-push.yaml | 3 +++ .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 3 +++ .tekton/fedora-bootc-42-minimal-pull-request.yaml | 3 +++ .tekton/fedora-bootc-42-minimal-push.yaml | 3 +++ .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 3 +++ .tekton/fedora-bootc-42-standard-pull-request.yaml | 3 +++ .tekton/fedora-bootc-42-standard-push.yaml | 3 +++ .tekton/fedora-bootc-42-standard-renovate-push.yaml | 3 +++ .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 3 +++ .tekton/fedora-bootc-rawhide-iot-push.yaml | 3 +++ .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 3 +++ .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 3 +++ .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 3 +++ .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 3 +++ .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 3 +++ .tekton/fedora-bootc-rawhide-minimal-push.yaml | 3 +++ .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 3 +++ .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 3 +++ .tekton/fedora-bootc-rawhide-standard-push.yaml | 3 +++ .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 3 +++ Containerfile | 5 +---- 37 files changed, 85 insertions(+), 16 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 1a3c98f..8d092be 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 8fec1e2..36a306c 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -51,6 +51,9 @@ spec: - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 2f9889a..17c62e0 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index ef54891..b2919dd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -52,6 +52,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index f0311e8..2437516 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -49,6 +49,9 @@ spec: - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index e817caa..76b9ae2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -52,6 +52,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index eea1da8..3bedcf0 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -50,6 +50,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 7727520..c06ca01 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -47,6 +47,9 @@ spec: - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 97454df..e672e26 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -50,6 +50,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 3d43525..188399d 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 84d3119..9a3f417 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -51,6 +51,9 @@ spec: - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 681486e..8b058f9 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=42 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index e874d81..1616543 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:on-pr-{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index eadcb11..1845c21 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -53,7 +53,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 19fac04..e51e6dc 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index daf6c46..df389c0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -54,7 +54,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:on-pr-{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 42ddcb0..1e940ae 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -51,7 +51,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 7fb752d..72ddf93 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -54,7 +54,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index c44f7b4..1557dae 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -52,7 +52,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:on-pr-{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 22c9ac3..ba262a8 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -49,7 +49,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 03315ed..dd1a256 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -52,7 +52,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 649edd1..7b4a898 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:on-pr-{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index b2d4fe2..0599e64 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -53,7 +53,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index afc9d2d..30a3f9a 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} - name: labels value: - - org.opencontainers.version=43 + - org.opencontainers.image.version=43 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 5a30ea1..280d505 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 2c224ec..3a840d1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -51,6 +51,9 @@ spec: - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index daab927..f7524d1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c0aa32b..ad9568c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -52,6 +52,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0bc82da..21f93ed 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -49,6 +49,9 @@ spec: - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b123de0..a95c41e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -52,6 +52,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 82f57d6..3d00bf3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -50,6 +50,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 91dba4f..8a5311a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -47,6 +47,9 @@ spec: - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 28cd6d5..2081c40 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -50,6 +50,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index abc31b3..fa035e1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 36f79ad..a474a85 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -51,6 +51,9 @@ spec: - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index d079915..9d845c3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -54,6 +54,9 @@ spec: value: 5d - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 pipelineRef: params: - name: bundle diff --git a/Containerfile b/Containerfile index f0d2735..90bad06 100644 --- a/Containerfile +++ b/Containerfile @@ -56,10 +56,7 @@ EORUN # This pulls in the rootfs generated in the previous step FROM scratch COPY --from=builder /target-rootfs/ / -# Note in practice this won't be right in a cross build, so we don't -# set it here. This placeholder is just to note that it *should* be set -# by the larger build system (e.g. Konflux). -LABEL org.opencontainers.image.version 43 + LABEL containers.bootc 1 # This is an ad-hoc way for us to reference bootc-image-builder in # a way that in theory client tooling can inspect and find. Today From 35467bdbdcc01a8ad6b42c33c935ffe5c8c74395 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 26 Aug 2025 17:05:21 -0400 Subject: [PATCH 213/697] bootc-base-imagectl: add `--lock` We want to be able to pin certain packages to certain versions during the build. Ideally, we'd be able to use `dnf versionlock` for this before calling `bootc-base-imagectl`, but that obviously doesn't work because it's not actually dnf in the backend but rpm-ostree. Add a new `--lock` which provides `dnf versionlock`-like functionality. But in practice, this is backed currently by rpm-ostree lockfiles. Both rpm-ostree lockfiles and the versionlock plugin are implemented the same way, leveraging excludes to make some packages completely invisible to the solver. So we should be able to retain this interface in the future when moving to dnf. --- bootc-base-imagectl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 335e470..824d17d 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -11,6 +11,7 @@ import subprocess import sys import tempfile +ARCH = os.uname().machine MANIFESTDIR = 'usr/share/doc/bootc-base-imagectl/manifests' def run_build_rootfs(args): @@ -66,6 +67,21 @@ def run_build_rootfs(args): tmp_manifest.close() manifest_path = tmp_manifest.name + tmp_lockfile = None + if args.lock: + lockfile = {'packages': {}} + for nevra in args.lock: + # we support passing either a NEVRA or a NEVR + name, ev, r_or_ra = nevra.rsplit('-', 2) + evr_or_evra = f'{ev}-{r_or_ra}' + field = 'evra' if r_or_ra.endswith(('.noarch', f'.{ARCH}')) else 'evr' + lockfile['packages'][name] = {field: evr_or_evra} + + tmp_lockfile = tempfile.NamedTemporaryFile(mode='w', encoding='utf-8', suffix='.json', delete=False) + json.dump(lockfile, tmp_lockfile) + tmp_lockfile.close() + rpmostree_argv.append(f"--lockfile={tmp_lockfile.name}") + try: if args.cachedir != "": rpmostree_argv.append(f"--cachedir={args.cachedir}") @@ -94,6 +110,8 @@ def run_build_rootfs(args): print(f"Error executing command: {e}") sys.exit(1) finally: + if tmp_lockfile is not None: + os.unlink(tmp_lockfile.name) if tmp_manifest is not None: os.unlink(tmp_manifest.name) if tmp_ostree_repo: @@ -160,6 +178,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') build_rootfs.add_argument("--nobody-99", help=argparse.SUPPRESS, action='store_true') build_rootfs.add_argument("--repo", help="Enable specific repositories only", action='append', default=[], metavar='REPO') + build_rootfs.add_argument("--lock", help="Lock package to specific version", action='append', default=[], metavar='NEVRA') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From 2acc1a06ecb3eab27ef6390f84454ebd35646aaf Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Wed, 27 Aug 2025 22:32:42 -0400 Subject: [PATCH 214/697] bootc-base-imagectl: clarify `--lock` help string Came up in !279. --- bootc-base-imagectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 824d17d..25f01ef 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -178,7 +178,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') build_rootfs.add_argument("--nobody-99", help=argparse.SUPPRESS, action='store_true') build_rootfs.add_argument("--repo", help="Enable specific repositories only", action='append', default=[], metavar='REPO') - build_rootfs.add_argument("--lock", help="Lock package to specific version", action='append', default=[], metavar='NEVRA') + build_rootfs.add_argument("--lock", help="Lock package to specific version; can be NEVRA or NEVR", action='append', default=[], metavar='NEVRA') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs) From 7e8409ba517c8098546535ab5d506caa5f6e7828 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 Aug 2025 03:33:28 +0000 Subject: [PATCH 215/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250828.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 8d092be..041839e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 36a306c..fdc832e 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 17c62e0..7797775 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index b2919dd..c2ee2e2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 2437516..3dce579 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 76b9ae2..fe841e8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 3bedcf0..c17b96e 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index c06ca01..1eb777d 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index e672e26..657c79a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 188399d..a323248 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 9a3f417..46f6456 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 8b058f9..30030cd 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250819.1@sha256:2d951def4f36b1fa882e449141b6038acf8a6a8507983b14bd23c08fe7c59e04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 67d5a4c7159c132b6945a2b50c843612b822c222 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 Aug 2025 21:35:40 +0000 Subject: [PATCH 216/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250828.0 docker digest to e8d596e Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 041839e..3bee28f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index fdc832e..d83ebf2 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 7797775..7225d37 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index c2ee2e2..6d0b56b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 3dce579..50a3a3a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index fe841e8..ca13b3f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c17b96e..7a4a17f 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 1eb777d..6fcc096 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 657c79a..6a3e106 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index a323248..b429b33 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 46f6456..10b5a85 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 30030cd..de5a76d 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:d2cc3d9de5da463958f7e9ce63ffd91a5cefc9128c882702c21587af4b0afd6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4c5a458148c7505e7f453971a0aa217a8bde7dce Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 29 Aug 2025 04:33:17 +0000 Subject: [PATCH 217/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250829.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3bee28f..d402f5e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index d83ebf2..e4b1b13 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 7225d37..1f8233c 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 6d0b56b..e87fe92 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 50a3a3a..76ad087 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index ca13b3f..f760602 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 7a4a17f..d81f8c4 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 6fcc096..684e980 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 6a3e106..3e2a6a2 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index b429b33..2386e77 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 10b5a85..6c3bbd5 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index de5a76d..79327a3 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250828.0@sha256:e8d596eba70194b069ffcc53f9b9c362107c86e08c11c3073bd11beb378921c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4980b943cedcb34ca0c550906a6ed8f78a0f2243 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 29 Aug 2025 09:58:50 -0400 Subject: [PATCH 218/697] README.md: Update now that "from scratch" exists Also this is going to test our CI. Signed-off-by: Colin Walters --- README.md | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 16c2ec8..ac5abda 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ delivery format for base operating system updates. The current default user experience is to build *layered* images on top of the official binary base images produced and tested by this project. See the documentation[5] for more info. -You can build custom base images by forking this repository; however, - tracks a more supportable -mechanism that is not simply forking. For more information see[6]. +If you want total control over the image, you don't need to fork this repository. +Instead, you can use the existing container as a "builder" to make new images. +For more information, see the documentation[6]. ## Build process @@ -42,21 +42,11 @@ Fedora repos and dnf variables. E.g.: podman build --from quay.io/fedora/fedora:41 ... ``` -### Deriving +## Content sets/tiers -You are of course also free to fork, customize, and build base images yourself. -See this page[6] of the documentation for more information. - -## Tiers - -At the current time, there is just one reference base image published -to the registry. Internally the content set is split up somewhat -into "tiers", but this is an internal implementation detail and may change -at any time. - -It is planned to rework and improve this in the future, especially -to support smaller custom images. For more on this, see -[this tracker issue](https://gitlab.com/fedora/bootc/tracker/-/issues/32). +Documentation above referenced the scratch[6] flow, +but there is also a `minimal-plus` that is not exposed as a stable +interface, but may be used by other images in Fedora. - **standard**: This image is the default, what is published as From 0260f4a37c2799bc8715e123c49b6e8927703c24 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sat, 30 Aug 2025 08:35:28 -0400 Subject: [PATCH 219/697] README.md: Fix scratch link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac5abda..5a4808e 100644 --- a/README.md +++ b/README.md @@ -86,4 +86,4 @@ Documentation: [3]: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit [4]: https://pre-commit.com/ [5]: https://docs.fedoraproject.org/en-US/bootc/building-containers/ -[6]: https://docs.fedoraproject.org/en-US/bootc/building-custom-base/ +[6]: https://docs.fedoraproject.org/en-US/bootc/building-from-scratch/ From 4a24648dd39c134520457fcf22e86ff002868418 Mon Sep 17 00:00:00 2001 From: Huijing Hei Date: Wed, 3 Sep 2025 10:33:07 +0800 Subject: [PATCH 220/697] test: verify the bootupd EFI has more than one component installed See https://github.com/coreos/bootupd/issues/994 --- tests/rootfs/cases/bootupd | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 tests/rootfs/cases/bootupd diff --git a/tests/rootfs/cases/bootupd b/tests/rootfs/cases/bootupd new file mode 100755 index 0000000..b03840b --- /dev/null +++ b/tests/rootfs/cases/bootupd @@ -0,0 +1,7 @@ +#!/bin/bash +set -xeuo pipefail +# Verify the bootupd EFI has more than one component installed +versions=$(cat /usr/lib/bootupd/updates/EFI.json | jq -r .version | tr ',' ' ') +array=($versions) +length=${#array[*]} +[ $length -gt 1 ] From eb53a58774e635cabc55b4f2329e02a102c36708 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 9 Sep 2025 10:33:55 +0000 Subject: [PATCH 221/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250909.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index d402f5e..83d102b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index e4b1b13..4bf1190 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 1f8233c..73cfb99 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index e87fe92..c4f9ec6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 76ad087..e05e5e5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index f760602..a0934af 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index d81f8c4..f9197d2 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 684e980..4b24154 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 3e2a6a2..7b78bea 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2386e77..4e925da 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 6c3bbd5..53ef55c 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 79327a3..1ecb776 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250829.0@sha256:2be55570ccb23709dd80178a68af4d2d2482f8481549db4281815c0e7f5d9e80 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 694f867fb7c3299772628d39312102cd5d78c2fc Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 10 Sep 2025 18:32:57 +0000 Subject: [PATCH 222/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250910.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 83d102b..355ffd0 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 4bf1190..4538f17 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 73cfb99..40e7def 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index c4f9ec6..00cf88d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index e05e5e5..4340f0f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index a0934af..c32d270 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index f9197d2..c1ec5c7 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 4b24154..fec45f4 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 7b78bea..39f608a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 4e925da..ed463cd 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 53ef55c..2d7ae99 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 1ecb776..44cd227 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250909.0@sha256:e6468e45941ae7b2eaae87a0495ae5cd4ccca98ea75e9dd2072f07b2f103eb09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d4a503d3040391cc49f924a1dd282d80995ba4a2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 11 Sep 2025 04:34:36 +0000 Subject: [PATCH 223/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250911.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 355ffd0..11a5a62 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 4538f17..f69a8f6 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 40e7def..95fc2bd 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 00cf88d..59abdc8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 4340f0f..eea76f0 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index c32d270..398dfac 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c1ec5c7..2e2e66a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index fec45f4..f3cb5d0 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 39f608a..fa56932 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index ed463cd..2b4cce3 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 2d7ae99..b914da9 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 44cd227..dca91f1 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250910.0@sha256:61c25243524418d62adba744620ec936aaee8108c40572e3be526ea87d64dc52 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 452150d34ae29217bacf98563a56c600f9c020bd Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 11 Sep 2025 13:35:45 +0000 Subject: [PATCH 224/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250911.0 docker digest to 31ab40d Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 11a5a62..fa5cd86 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index f69a8f6..de44412 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 95fc2bd..2f919bf 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 59abdc8..8b61014 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index eea76f0..9472781 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 398dfac..e2f4ca9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 2e2e66a..539bfd2 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index f3cb5d0..c44b1ef 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index fa56932..a413676 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2b4cce3..fe701c4 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b914da9..4a4e43c 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index dca91f1..d876dc7 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:cd80468806b04ab1336be2746a210eaf9c98365232db2e2e4996646a5291cbfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 085d0dc9b8f13ce233663c872353d31e1c5325f9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 12 Sep 2025 05:34:14 +0000 Subject: [PATCH 225/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250912.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index fa5cd86..2042f44 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index de44412..d773888 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 2f919bf..50dbe38 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 8b61014..2cf6b48 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 9472781..5e5c8eb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index e2f4ca9..7242512 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 539bfd2..b88276b 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index c44b1ef..324f9b2 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index a413676..6f05c75 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index fe701c4..d252347 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4a4e43c..4bcfd15 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index d876dc7..9e4f03e 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250911.0@sha256:31ab40ddc6f17a09646d26969e183899af18040637dd285559cf1d3eba878607 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 34aaa1a67fecb7833897d4ab201bd4b48abcef45 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 12 Sep 2025 07:37:51 +0000 Subject: [PATCH 226/697] chore(deps): update quay.io/buildah/stable docker tag to v1.41.4 Signed-off-by: Platform Engineering Bot --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c4c2955..aa38130 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ variables: .build-image: stage: build - image: quay.io/buildah/stable:v1.40.1 + image: quay.io/buildah/stable:v1.41.4 needs: [] basic-checks: From 112172e54adac85bf6ba659223c614adc7e797c9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 12 Sep 2025 13:35:00 +0000 Subject: [PATCH 227/697] chore(deps): update konflux references to a53d0e4 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2042f44..cc3d782 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index d773888..fa2a841 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 50dbe38..e676e53 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 2cf6b48..f313e30 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 5e5c8eb..58ef13e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 7242512..d1f883b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index b88276b..7d8ae30 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 324f9b2..d84666d 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 6f05c75..8f04a10 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d252347..d69dd91 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4bcfd15..1cebfe4 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 9e4f03e..61b8e08 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 1616543..050908c 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 1845c21..8b42e2e 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index e51e6dc..ce895c0 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index df389c0..0c12fcd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 1e940ae..ba17bfd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 72ddf93..f339740 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 1557dae..540a982 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index ba262a8..efc191b 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index dd1a256..404ea86 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 7b4a898..5cf7c51 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0599e64..04e392a 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 30a3f9a..2e81e3a 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 280d505..f952720 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 3a840d1..c5e23e3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index f7524d1..642d087 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ad9568c..fe4d3b8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 21f93ed..7c82b4c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a95c41e..7f6f4da 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 3d00bf3..7e15d72 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 8a5311a..e73b407 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 2081c40..731098f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index fa035e1..001bb8e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a474a85..d2562d0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 9d845c3..a04b618 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ea80d0ab92471fd4ad5bcaa6961781c3c66ce043e9fc4af7c6cc2b734e8499ca + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From d40eb8f5f4836057e137551de37431ff9e3ab949 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 12 Sep 2025 14:37:35 +0000 Subject: [PATCH 228/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250912.0 docker digest to c9a72d7 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index cc3d782..2697f9f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index fa2a841..3eef77c 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index e676e53..9ae1d96 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index f313e30..bddef76 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 58ef13e..4bbf7be 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index d1f883b..62bb9fb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 7d8ae30..0e784e8 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d84666d..f957617 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8f04a10..d9a6fd6 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d69dd91..7bdadce 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1cebfe4..19a261a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 61b8e08..309b0a4 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:e13ac63ec311e59ab8b3579e3c2c2ce852886f736d790b615ead72f8255e533e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 08221b48175fc9ac6975545cb2e88226412bbe65 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 15 Sep 2025 03:31:27 +0000 Subject: [PATCH 229/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250915.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2697f9f..632db71 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 3eef77c..0e718db 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 9ae1d96..1dcd8f3 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index bddef76..984773a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 4bbf7be..bfe0c10 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 62bb9fb..43cdc3d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 0e784e8..8042092 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index f957617..0cc5a64 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index d9a6fd6..745d12f 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 7bdadce..1f2df4c 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 19a261a..851dcb6 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 309b0a4..f1490db 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250912.0@sha256:c9a72d7b486721ab0590e49acfdee743bcc6ca4a7b304e9c450e84d2c49dd8a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0df71bfac1f302425f91c58674b847073a3214ca Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 16 Sep 2025 04:35:53 +0000 Subject: [PATCH 230/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250915.0 docker digest to 16c83ff Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 632db71..55bbdb9 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0e718db..1e2bfa7 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 1dcd8f3..0a5a83a 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 984773a..18be5bb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index bfe0c10..27d4fcd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 43cdc3d..c9dd981 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 8042092..21bfdd3 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 0cc5a64..bd36cd8 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 745d12f..7b22daf 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 1f2df4c..43bb839 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 851dcb6..7b883de 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index f1490db..654dd77 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:550d3666b1f56ac059afcde13206da11a0f377a1783d74e7825891b90f45454d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f4e040ddb254c109832e615c16129137a5712993 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 16 Sep 2025 17:38:18 +0000 Subject: [PATCH 231/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250916.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 55bbdb9..9033934 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 1e2bfa7..9793587 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 0a5a83a..37d4c8e 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 18be5bb..afa57a4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 27d4fcd..4819341 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index c9dd981..386d912 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 21bfdd3..50cea66 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index bd36cd8..8ad3933 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 7b22daf..4135801 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 43bb839..c515698 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 7b883de..1685866 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 654dd77..b14bbda 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250915.0@sha256:16c83ff9156c9d0bf8ff7f55fd6da756b8228c74acb43b90bd21f56530d26aec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7878962efc3b32a2c237a7940b7a7da6c5cd7dc4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 17 Sep 2025 02:33:33 +0000 Subject: [PATCH 232/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250916.1 docker digest to ac5b9b0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 9033934..59755d7 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 9793587..47c365e 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 37d4c8e..1e76e23 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index afa57a4..7958f61 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 4819341..4d96910 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 386d912..ca3740a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 50cea66..572da6a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 8ad3933..cae8669 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 4135801..32cf40a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index c515698..4df1d6a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1685866..aa6bd2d 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index b14bbda..5eac724 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:de2dc7e166c80be2dddef1df946d51494ffb7c00e2b78deb04c7b8ee99bf4ac4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b55089b58d87d66015558fd3552ce54307e17215 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 17 Sep 2025 04:32:10 +0000 Subject: [PATCH 233/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250917.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 59755d7..608ab23 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 47c365e..b250080 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 1e76e23..40edce2 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 7958f61..d741cf9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 4d96910..104895c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index ca3740a..179c050 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 572da6a..b42cd7a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index cae8669..5c2e880 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 32cf40a..7eeac0d 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 4df1d6a..db2d724 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index aa6bd2d..c658592 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 5eac724..dfa4de3 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250916.1@sha256:ac5b9b0065e67c49608c575475231b49b23cd3c06b5fe0904a0e5548d99c07f1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e4d9fb3dec82cc3bf029c4695363dff3ddccf814 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 17 Sep 2025 11:09:12 +0000 Subject: [PATCH 234/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250917.0 docker digest to a8c329d Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 608ab23..f0ebb45 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b250080..0ba0dc5 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 40edce2..93a5498 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index d741cf9..46a0939 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 104895c..76c86b5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 179c050..dc13b6c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index b42cd7a..6185b77 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 5c2e880..f52f239 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 7eeac0d..f16c450 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index db2d724..e8e2034 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index c658592..61eb6fd 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index dfa4de3..2d3a1c4 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:f42147f86da3df7af3f7bfb832108efa4013a1d5df2b06a87007f9cc616f2698 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4a49bb878867344fa2537a16922dec8d7377e4ff Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 17 Sep 2025 13:09:54 +0000 Subject: [PATCH 235/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250917.0 docker digest to 5131ad3 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index f0ebb45..e0fff43 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0ba0dc5..c681493 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 93a5498..37d79f6 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 46a0939..8fb3d0a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 76c86b5..2c1a7fc 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index dc13b6c..3640c8a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 6185b77..37b9984 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index f52f239..48eebd4 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index f16c450..4222031 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e8e2034..56fa2c9 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 61eb6fd..7e7b187 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2d3a1c4..91d8329 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:a8c329d2a16b3b5de3cda1aed8457f8c76c33169f3aefb718d1aefcd1bcd3f9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0ea23c76df2634eef274df31b4511e699adafc7d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 17 Sep 2025 17:09:47 +0000 Subject: [PATCH 236/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250917.0 docker digest to d33ff02 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index e0fff43..8f265b2 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c681493..e802a86 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 37d79f6..3bb7fa6 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 8fb3d0a..33a3762 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 2c1a7fc..57ebbcc 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3640c8a..31ea2bb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 37b9984..c542541 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 48eebd4..a57d8bf 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 4222031..40a55b6 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 56fa2c9..1c5fd5a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 7e7b187..35fbf39 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 91d8329..b77b6ba 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:5131ad323d393fee63b3bf1e46c30c32b0fb8db01a484d3096a8da34e10a8a39 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b6d598edd7f3aa50707c3e991d15d696a396f7a9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 18 Sep 2025 03:07:41 +0000 Subject: [PATCH 237/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250917.0 docker digest to fe507fe Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 8f265b2..91438e8 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index e802a86..0714390 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 3bb7fa6..d972228 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 33a3762..904243d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 57ebbcc..2b26e16 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 31ea2bb..7a4f126 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c542541..2cec5a1 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index a57d8bf..0096290 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 40a55b6..3eb50c4 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 1c5fd5a..6162e09 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 35fbf39..5b07c57 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index b77b6ba..987003c 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:d33ff02c31459956ea6d633ce6291546bc2a0efb6665e61fa2f0d2f131c428b8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 154d9c299dbf5206beab62a85efa394959e78d1a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 18 Sep 2025 04:08:56 +0000 Subject: [PATCH 238/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250917.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index f952720..aa108bd 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index c5e23e3..058534b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 642d087..858b8a8 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index fe4d3b8..a4f19a6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 7c82b4c..474ab13 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 7f6f4da..b695daf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 7e15d72..af0c11b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e73b407..be7d491 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 731098f..12c92f7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 001bb8e..4f7660b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index d2562d0..6a30983 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index a04b618..7a2ac64 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250819.n.0@sha256:eefc100461b99d6cb4e2476fe0680a2adbef67a5cae524485ea6b090798f7bd8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 97d48ab83e001fa18580a4305ca015a819d330eb Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 18 Sep 2025 14:09:30 +0000 Subject: [PATCH 239/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250918.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 91438e8..212fe1c 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0714390..2d39496 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index d972228..b8ed786 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 904243d..a0a07c6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 2b26e16..88a41e3 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 7a4f126..46e53c6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 2cec5a1..79b57c3 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 0096290..de652f4 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 3eb50c4..ec30510 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 6162e09..f87285f 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 5b07c57..c1eb65b 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 987003c..2af64bd 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250917.0@sha256:fe507fec90f7a4fc1f476cf763803a09c40c8af965f9b549c697ecff12e9a347 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 127c80b5a0c00cc89cb578fc76c89edbf4251c6b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 19 Sep 2025 04:08:48 +0000 Subject: [PATCH 240/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250919.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 212fe1c..fbcd949 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 2d39496..f9aa239 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index b8ed786..243d6bc 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a0a07c6..b44c0f9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 88a41e3..ec61b4f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 46e53c6..d436063 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 79b57c3..dfc21d2 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index de652f4..ba6c04b 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index ec30510..6c05424 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index f87285f..cc82118 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index c1eb65b..fb5f604 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2af64bd..a4310c3 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250918.0@sha256:8fa68c405fc6d83062d98f3898c757b45aad49504376a05676777a87829e11c2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4efb92d1a29e8dbde2b309bd250de17ef5689164 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 22 Sep 2025 00:10:47 +0000 Subject: [PATCH 241/697] chore(deps): update konflux references to ba3c2d6 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index fbcd949..0f952da 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index f9aa239..e575b7c 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 243d6bc..6103ed4 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index b44c0f9..5917207 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index ec61b4f..7ff1f2d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index d436063..945d218 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index dfc21d2..ef8152e 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index ba6c04b..b69ca52 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 6c05424..a3bd08e 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index cc82118..45788b7 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index fb5f604..2b24187 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index a4310c3..326e42c 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 050908c..6746cab 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 8b42e2e..6c98046 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index ce895c0..a30ffda 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 0c12fcd..5257c69 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index ba17bfd..6a16828 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index f339740..4de775f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 540a982..96e1a33 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index efc191b..d5678f9 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 404ea86..841e5c1 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 5cf7c51..bb58660 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 04e392a..f297f32 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 2e81e3a..60be258 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index aa108bd..8cc725d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 058534b..1366e29 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 858b8a8..cf92c6a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a4f19a6..e0bd417 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 474ab13..f22dcde 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b695daf..855d6a5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index af0c11b..a404686 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index be7d491..1ef0ff5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 12c92f7..973c586 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4f7660b..0bff206 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6a30983..676e4b3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7a2ac64..9bd5f56 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:a53d0e45e77e4afeaf70851eedf3751a26744eddaf65405e800141ee5b1f349d + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 9b64b5432cc75ce89c320c7bff87aa48ec686c76 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 22 Sep 2025 05:09:13 +0000 Subject: [PATCH 242/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250922.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index fbcd949..8e59c73 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index f9aa239..862becd 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 243d6bc..1b1e731 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index b44c0f9..7c9e703 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index ec61b4f..02055ae 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index d436063..6aa06fd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index dfc21d2..e88f03b 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index ba6c04b..f6ae9f7 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 6c05424..8fa240a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index cc82118..b4d5fcc 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index fb5f604..79a21fc 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index a4310c3..13444f7 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250919.0@sha256:475a283f8272cf4845a4bb0e70db00bed352048d26bc4d6463efe2fb89996b2c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 685c54de90e08525bb0dc0872f89d51b6040625f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 22 Sep 2025 11:10:23 +0000 Subject: [PATCH 243/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250922.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index aa108bd..8bd698c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 058534b..2a6e61a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 858b8a8..6a6318f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a4f19a6..94e4ec5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 474ab13..e0c186d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b695daf..540cda7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index af0c11b..ffca311 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index be7d491..c1fdf77 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 12c92f7..9ba4380 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4f7660b..42f990d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6a30983..f5b8dfb 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7a2ac64..02db6b8 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250917.n.0@sha256:91cf93dd41fc49d51350e9ab4ce7b21ed0650f6a74701e848e486f1dfd88ee04 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ca0702907aaa3a5b76524ee8b259219aa313f26d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 23 Sep 2025 06:08:50 +0000 Subject: [PATCH 244/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250923.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index f794eaa..56ceb06 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 06469f4..f31f6c9 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 4a82373..66afaf5 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 20e19ef..fd2b023 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 782e238..96c4aaf 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 03b8c7b..623f19d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 372676b..48bf989 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index e3b5d4a..4c5c78b 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index f372cfd..b502105 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2e40911..a72e4ac 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 0d6fd1a..6cd7cc1 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 4c9bee2..76943e2 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250922.0@sha256:264fbb020a16c8a93cf78cad2e270d0641ee4cbf24c5f56162daa0b5a5c2bafe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0629f81d92316014d3842a8ef3584fafba1dab2d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 24 Sep 2025 07:07:41 +0000 Subject: [PATCH 245/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250923.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index a28a30b..b91f26b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 7c27011..b82cf1b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 8f42cb5..e13343d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8979dcc..1460634 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 62dd329..229228a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index e1a9bbf..8e88e3e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e04a3ae..5bd1f94 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 93e8cc3..9bdf0ca 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 4b2c02d..c38e7ef 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index f74912a..b6f98db 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 599e0c0..a9156df 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7b6d8e2..53cc4ec 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250922.n.0@sha256:a09c97d16621bceee420571c2189973e540c54a692d0161ca1a01bf5e354b90b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e9e6403a38109f1acfc4294dec7fc91e37917529 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 24 Sep 2025 08:08:59 +0000 Subject: [PATCH 246/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20250923.0 docker digest to 181c9b0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 56ceb06..d8ef3cb 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index f31f6c9..cf21802 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 66afaf5..39d1b53 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index fd2b023..8a6e53d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 96c4aaf..3cc952a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 623f19d..f835789 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 48bf989..0790075 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 4c5c78b..08bdd98 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index b502105..c4417a5 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index a72e4ac..15f69d0 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 6cd7cc1..a200eeb 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 76943e2..3bc8051 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:337d635ca0990539bc68a30a54eed7ffd8e724f5561e1c677bb768d94da7a816 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a3f7eadddaa8413c741f50ca26a9c774eb9025ee Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 24 Sep 2025 19:09:02 +0000 Subject: [PATCH 247/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250924.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index d8ef3cb..4f603a7 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index cf21802..2a99511 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 39d1b53..6d3a31b 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 8a6e53d..27c5c86 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 3cc952a..1487eb7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index f835789..5b47727 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 0790075..573bb90 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 08bdd98..e6d9d6f 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c4417a5..c4402ad 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 15f69d0..b9ba708 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index a200eeb..2a8e51c 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 3bc8051..2a7efcb 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250923.0@sha256:181c9b0a5e6d82195956cf436edfdd529181b1b098221479af5749d182c2a6ac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0fae01bedc37276c2f75e56c2db7f045bc68e4d2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 25 Sep 2025 04:08:05 +0000 Subject: [PATCH 248/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250925.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 4f603a7..5def76d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 2a99511..6580ab2 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 6d3a31b..5d15f82 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 27c5c86..73b0a3e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 1487eb7..f94d966 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 5b47727..3418a5f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 573bb90..eea5c9f 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index e6d9d6f..557117c 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c4402ad..63bcb80 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index b9ba708..e86be27 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 2a8e51c..887a6a4 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2a7efcb..23fcbaa 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250924.0@sha256:3157ffc40fcb3ffb22844154c5acaf312177e624234a9d10b710b3a22fdb72d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 900e79342bca1171f17007c81838a898a6354344 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 26 Sep 2025 06:08:13 +0000 Subject: [PATCH 249/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20250926.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 5def76d..c2cf15f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 6580ab2..976348b 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 5d15f82..ccba233 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 73b0a3e..a4ab4ce 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index f94d966..3366ad6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3418a5f..36ab969 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index eea5c9f..c33de12 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 557117c..3c1c8a2 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 63bcb80..742eeb4 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e86be27..658d307 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 887a6a4..1680143 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 23fcbaa..55d81f7 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250925.0@sha256:1aa5f5ab47d36f3d87d24e62c0fcd296ed13c7c8179b6d57b078fb3b53d3ef94 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 60a41d7b6a8bcf94e0f549a54b44855e33514b0a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 26 Sep 2025 09:07:27 +0000 Subject: [PATCH 250/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20250926.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b91f26b..b901cf9 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index b82cf1b..1efec77 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index e13343d..9a9cb6f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1460634..fa6bd6d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 229228a..044eee4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 8e88e3e..a286d31 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 5bd1f94..58f3846 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9bdf0ca..311d9e7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index c38e7ef..2d82f3c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b6f98db..d781a21 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a9156df..3a4a85f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 53cc4ec..bf25aca 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250923.n.0@sha256:0fd04bfc8336654f3ef5022ec9d7a849c7c69e456a56d068e440adacf9485fd6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4e93ed9f2b528e883e2d7c1c77dbd895fe0c8201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Sat, 27 Sep 2025 00:00:52 +0200 Subject: [PATCH 251/697] ci: enable 'ppc64le' and 's390x' builds --- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-standard-push.yaml | 2 ++ .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-43-standard-push.yaml | 2 ++ .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 ++ 27 files changed, 54 insertions(+) diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a4ab4ce..3d53585 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -38,6 +38,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 3366ad6..e9022ca 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -37,6 +37,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 36ab969..848be5d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -38,6 +38,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c33de12..e2b27e6 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -36,6 +36,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 3c1c8a2..c9b6ecb 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -35,6 +35,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 742eeb4..defafd5 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -36,6 +36,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 658d307..7cc3310 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -40,6 +40,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1680143..8821dac 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -39,6 +39,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 55d81f7..c7f9aec 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -40,6 +40,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 5257c69..546b9e7 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -38,6 +38,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6a16828..a9bd9be 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -37,6 +37,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 4de775f..6957b18 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -38,6 +38,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 96e1a33..e4b0319 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -36,6 +36,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d5678f9..f13f82c 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -35,6 +35,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 841e5c1..bf537ee 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -36,6 +36,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index bb58660..66e3dea 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -40,6 +40,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f297f32..1716859 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -39,6 +39,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 60be258..dd6c885 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -40,6 +40,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index fa6bd6d..c103117 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -38,6 +38,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 044eee4..06edfb0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -37,6 +37,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a286d31..fc0a588 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -38,6 +38,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 58f3846..fa207f0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -36,6 +36,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 311d9e7..b98e70b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -35,6 +35,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 2d82f3c..8707525 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -36,6 +36,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d781a21..7fa6a98 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -40,6 +40,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3a4a85f..f812266 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -39,6 +39,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index bf25aca..ab2b809 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -40,6 +40,8 @@ spec: value: - linux/amd64 - linux/arm64 + - linux/ppc64le + - linux/s390x - name: dockerfile value: Containerfile - name: path-context From 0b773f97d7b91607aaa1858a2d350d888ff15981 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Oct 2025 08:08:50 +0000 Subject: [PATCH 252/697] chore(deps): update konflux references to 49a26e0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index c2cf15f..fb62d67 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 976348b..c9b120a 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ccba233..ad02e5a 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a4ab4ce..e6ab74b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 3366ad6..133e63d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 36ab969..da3aede 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c33de12..904dd65 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 3c1c8a2..d8e04df 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 742eeb4..8f37010 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 658d307..214eb69 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1680143..00d5e90 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 55d81f7..4327597 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 6746cab..ce9085f 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 6c98046..40447b1 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index a30ffda..b754998 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 5257c69..94774ad 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6a16828..3c801de 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 4de775f..710f1b6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 96e1a33..51ef3a8 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d5678f9..4d19127 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 841e5c1..3bdf175 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index bb58660..16a7def 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f297f32..b898693 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 60be258..e8b3d63 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b901cf9..c0821e8 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 1efec77..54942bb 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 9a9cb6f..7d8e65c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index fa6bd6d..5db0a25 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 044eee4..55ca530 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a286d31..8da91cd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 58f3846..5d9fe3f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 311d9e7..c3d3b5c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -53,7 +53,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 2d82f3c..fc393b3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d781a21..0f02399 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3a4a85f..f76758e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index bf25aca..1768b41 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:ba3c2d68b527da50d06619c34f15341081c3969aa305f181ecb08e40226e3a28 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 190fc321d29e560e12dc65f3580dfbc476e8596b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 3 Oct 2025 14:08:33 +0000 Subject: [PATCH 253/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251003.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index fb62d67..3dce646 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c9b120a..8fdc97c 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ad02e5a..ccb6cb4 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index e6ab74b..945af78 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 133e63d..a87f574 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index da3aede..bb09039 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 904dd65..1441e1a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d8e04df..4e8fcc2 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -43,7 +43,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8f37010..8c7f2ab 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -44,7 +44,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 214eb69..441042f 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 00d5e90..350ea19 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 4327597..0aaa104 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20250926.0@sha256:406c0a56bad72b30fa336dc5b9001162d51e7e45b7a81a5e7c2e6c30f6adf441 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From efdbbb125584fe507bcb7e977532cc45763e092b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 6 Oct 2025 00:11:27 +0000 Subject: [PATCH 254/697] chore(deps): update quay.io/buildah/stable docker tag to v1.41.5 Signed-off-by: Platform Engineering Bot --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa38130..bbbf56f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ variables: .build-image: stage: build - image: quay.io/buildah/stable:v1.41.4 + image: quay.io/buildah/stable:v1.41.5 needs: [] basic-checks: From 5aa9b0e4080df2487cab878256ec7e245dfe202f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 6 Oct 2025 09:09:08 +0000 Subject: [PATCH 255/697] chore(deps): update konflux references to 5bcbc7d Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3dce646..ed78f86 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 8fdc97c..81ca5cf 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ccb6cb4..0d926e9 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index e5951a6..2f1fc13 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index d424837..da494b2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 6505ae3..cd38874 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 8cbd558..416f30d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 3588e0f..7090eca 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 2f1be5d..600cbc1 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index cbef392..3ad4eea 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b767ff9..6cfb7fc 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index c317ff0..6ccb8da 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index ce9085f..94f5836 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 40447b1..4d7942b 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index b754998..457df42 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 53daa6f..d8756bb 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 1f9f431..cacdc37 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index e51a6f2..66dfaa8 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index cdc5e17..ea84389 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index f63bf45..115bd2a 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 34798fe..4bd1c2c 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 72df1fe..209e547 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index c0f0e22..ee05fae 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 918d362..bed76d9 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index c0821e8..ff9e6ac 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 54942bb..59d0319 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 7d8e65c..509646e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 9465a39..a443b23 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 35204b1..9b73072 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 77d4824..b2a6f9e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index f92bdb0..44ab6f1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e1758d0..fa5a675 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 010bb91..91d2ad7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3dc686a..3e4a00d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 487d71d..f2eacd0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 1b30ff2..0aac99d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:49a26e077686af4597fb94ed687fb135ad62058aa014db8950653e83b74189b4 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 53597bcab00b7adc2edbaff925fcf9a2531847fe Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 6 Oct 2025 23:08:12 +0000 Subject: [PATCH 256/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-testing-20251003.0 docker digest to 9f80d7b Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index ed78f86..3163a3f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 81ca5cf..7351d4b 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 0d926e9..ba596f0 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 2f1fc13..e43d97c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index da494b2..e9f3a22 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index cd38874..f8017d7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 416f30d..f5fb56d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 7090eca..d068dbc 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 600cbc1..0193a29 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 3ad4eea..efc8d0a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 6cfb7fc..e2c6184 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 6ccb8da..42d5f85 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:58d98439a57bb8c142d7f75e02885309c7647bc71ae716793d287570582bbcc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 00ef9d58ea1002d87862ede74b9fb36928473846 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 7 Oct 2025 06:09:08 +0000 Subject: [PATCH 257/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251006.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index ff9e6ac..4b68ba2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 59d0319..57c900e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 509646e..298d9c4 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a443b23..616dfc6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 9b73072..c1db9a7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b2a6f9e..70dc301 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 44ab6f1..82c10b4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index fa5a675..b2d90f0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 91d2ad7..7dad881 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3e4a00d..cbe2441 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f2eacd0..6acd8bf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 0aac99d..8f41d8a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20250926.n.0@sha256:4976c181f772c8e11c839a1936ae2670842bbc931464c665a31cb1533e1c051f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5dabb901bd7744f89c4da69402b5603b86186ef4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Oct 2025 05:09:40 +0000 Subject: [PATCH 258/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251008.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3163a3f..6abb21e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 7351d4b..afa7b63 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ba596f0..f95ef83 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index e43d97c..0b9a4d7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index e9f3a22..863f3c8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index f8017d7..7add97c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index f5fb56d..bec3367 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d068dbc..535a757 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 0193a29..ccbb53a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index efc8d0a..8b58af3 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index e2c6184..a61f761 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 42d5f85..a28b91f 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251003.0@sha256:9f80d7b9369aa54d20122b14bedeed9161f9f6177cc6b608c12c2b5421db0e46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ac39abe2a5eaf005d715ebc55122b343af791f06 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Oct 2025 07:07:52 +0000 Subject: [PATCH 259/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251007.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 4b68ba2..9c77a10 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 57c900e..8d86a09 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 298d9c4..e3a5009 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 616dfc6..8d57123 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index c1db9a7..07dd391 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 70dc301..9e3961b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 82c10b4..29460a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index b2d90f0..d8f46e6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 7dad881..7615acf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index cbe2441..84c946e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6acd8bf..19fd9b7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 8f41d8a..6e18f42 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251006.n.1@sha256:be7456409d6842cb0a13b69f6f5376d30a32591d78ab6f9cfbd4ebc2cd509192 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2618a1cb1e84a66945955b4d2a2875f9715b861a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 8 Oct 2025 10:07:17 +0200 Subject: [PATCH 260/697] chore: update fedora 43 compose image --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 94f5836..dbbae22 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 4d7942b..443cd7d 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 457df42..1cb3792 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index d8756bb..2164b4f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index cacdc37..c082a35 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 66dfaa8..629d3a9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index ea84389..c84fcec 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 115bd2a..d7bca0b 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 4bd1c2c..8847ea2 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 209e547..facd86a 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index ee05fae..e375821 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index bed76d9..1481747 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-202508018.n.0@sha256:3d38d19271f189aef11c0b0642ed4105c8aafba34fdf790c373e5ec321ae260a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 83c6a6d0faf76865d4fecb07d12ffa096edf6a76 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 9 Oct 2025 06:07:48 +0000 Subject: [PATCH 261/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251009.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 6abb21e..5c86b2d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index afa7b63..9b5acea 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index f95ef83..df75253 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 0b9a4d7..816f571 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 863f3c8..448e1a9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 7add97c..ca40c3c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index bec3367..907b8f7 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 535a757..8d2dbfe 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index ccbb53a..47a0fc4 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8b58af3..2a8ca36 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index a61f761..2a8b27a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index a28b91f..5193403 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251008.0@sha256:79d12fbfaacecb6f390d009f5567e3c8ebf01e9c2e0f8d893fa4c45e70aaa3a8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 154d8ed41b30c98181b15a0b565571c5aab4141d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 10 Oct 2025 06:07:18 +0000 Subject: [PATCH 262/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251010.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 5c86b2d..234b62d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 9b5acea..2d80579 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index df75253..b9d4c17 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 816f571..40c61eb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 448e1a9..7e77635 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index ca40c3c..1aa28eb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 907b8f7..bd319d3 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 8d2dbfe..33d253c 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 47a0fc4..f88068c 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2a8ca36..db775b8 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 2a8b27a..0b29fc9 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 5193403..2ec24a9 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251009.0@sha256:e222966502e99d0a6cac4a326899da36faa08b043cd306eec7675d8e5b43d627 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1926d6b48a98823af41f8268e3ae54866d88d894 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 13 Oct 2025 05:10:35 +0000 Subject: [PATCH 263/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251013.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 234b62d..37a2a48 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 2d80579..c27fa23 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index b9d4c17..e6e398b 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 40c61eb..ffab972 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 7e77635..9ddfcd7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 1aa28eb..37d4c6b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index bd319d3..1c98a13 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 33d253c..d701aa5 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index f88068c..d0830e5 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index db775b8..d1e14b7 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 0b29fc9..f537b33 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2ec24a9..60468c6 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251010.0@sha256:8cbc115539e0789f8b305d243b8e85a91fffc6829938ea3195479a3a3b8e22b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 80891d0eeeac03bb8738be7e7005b45083f402d3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 13 Oct 2025 07:09:51 +0000 Subject: [PATCH 264/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251012.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 9c77a10..327aa12 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 8d86a09..eb0323a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index e3a5009..5357108 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8d57123..7cf90d7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 07dd391..09268d1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 9e3961b..0f80652 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 29460a1..006af97 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index d8f46e6..2971c8a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 7615acf..f1e3ee9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 84c946e..c90a89d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 19fd9b7..110354b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 6e18f42..80cd834 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251007.n.0@sha256:db35f9ac683bebc0ef42d6930303ac4b6b3a7d627ca93d69b820e93b9ef6f3c7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From aa35d5d19f39e1a6d8c0938f03b84914dd3b0508 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 13 Oct 2025 10:08:56 +0000 Subject: [PATCH 265/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251013.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 327aa12..b2c3106 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index eb0323a..0dfb6f8 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 5357108..84625d1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 7cf90d7..2571cf0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 09268d1..30371eb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0f80652..a2279a7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 006af97..fed0305 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 2971c8a..5c79a57 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index f1e3ee9..b08a979 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c90a89d..b679090 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 110354b..9c91da2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 80cd834..bf3c6db 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251012.n.0@sha256:7f0c40ca0ee9f83257082fd60f23694a9d39629ccd638b551465edf215ffcc2b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 150ff04624ff4c2d4c3573c59fe301ac552945be Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 13 Oct 2025 12:08:47 +0000 Subject: [PATCH 266/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-testing-20251013.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index dbbae22..6b1c3a1 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 443cd7d..e3c346b 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 1cb3792..881780f 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 2164b4f..3df56aa 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index c082a35..8138b2b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 629d3a9..f6ec359 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index c84fcec..4ec585b 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d7bca0b..99aac7d 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 8847ea2..0de0f97 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index facd86a..7e1ce18 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index e375821..ae0a51d 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 1481747..11820bd 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251008.0@sha256:d700d26350064d1ae8f7747e299f8ee83e6c2e386d09b953cbdc36434ea882b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d50d6a5ea763182dea5820d46abd8e44d96240d8 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 14 Oct 2025 06:11:07 +0000 Subject: [PATCH 267/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251014.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 37a2a48..87005d7 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c27fa23..e84ea91 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index e6e398b..508098d 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index ffab972..45a4f72 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 9ddfcd7..1481628 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 37d4c6b..1a8dadb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 1c98a13..fa6dd01 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d701aa5..a322417 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index d0830e5..8ab7642 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d1e14b7..cf6d979 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index f537b33..1b78ae7 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 60468c6..e539373 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251013.0@sha256:9e96510d9422add37eac8baf3ada02023d87d6fc53fb9af99e947841e968d78a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 74b246c70eeaee5e9ca94ea585705f714a45d5b8 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 14 Oct 2025 14:09:57 +0000 Subject: [PATCH 268/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251014.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b2c3106..b916ebb 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 0dfb6f8..dc71065 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 84625d1..63cbb77 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2571cf0..478d26c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 30371eb..7e99788 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a2279a7..0cb0226 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index fed0305..d478d51 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5c79a57..ef2d023 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index b08a979..a2bcd7c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b679090..ca99c5c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 9c91da2..43c029c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index bf3c6db..3bbf072 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251013.n.0@sha256:fafba31cf4a835f8e320b30704b8c96f3730d7113a3c483934c870fed6e91f5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 38e508cc4aeb004e783f219082aedb8567984a1e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 15 Oct 2025 06:09:38 +0000 Subject: [PATCH 269/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251015.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 87005d7..d2135b2 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index e84ea91..adb3aa1 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 508098d..3828020 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 45a4f72..8597cb4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 1481628..78cf9d3 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 1a8dadb..bb7c1c5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index fa6dd01..1c093a1 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index a322417..f5dd643 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8ab7642..ffb1aa3 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index cf6d979..6406a6f 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1b78ae7..d3fba0e 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index e539373..8c77282 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251014.0@sha256:bdf3f2f226926ec4053b421a4d885946cf443042a5027a5fdf3c1d568d69e942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8895ec92a278fb52c813dd3246ef57e62a4722c1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 17 Oct 2025 09:22:48 -0400 Subject: [PATCH 270/697] Move kvm to `/etc/group` Per https://issues.redhat.com/browse/RHEL-115278 Longer term of course we want to hard require systemd-sysusers for this one instead. Signed-off-by: Colin Walters --- minimal/postprocess-conf.yaml | 1 + tests/rootfs/cases/etc-group | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/minimal/postprocess-conf.yaml b/minimal/postprocess-conf.yaml index 6c3894a..75762ad 100644 --- a/minimal/postprocess-conf.yaml +++ b/minimal/postprocess-conf.yaml @@ -22,6 +22,7 @@ etc-group-members: - wheel - systemd-journal - tss # https://issues.redhat.com/browse/BIFROST-618 + - kvm # https://issues.redhat.com/browse/RHEL-115278 - adm conditional-include: diff --git a/tests/rootfs/cases/etc-group b/tests/rootfs/cases/etc-group index fceee84..95c9913 100755 --- a/tests/rootfs/cases/etc-group +++ b/tests/rootfs/cases/etc-group @@ -1,6 +1,9 @@ #!/bin/bash set -xeuo pipefail # Verify group members -getent group tss >/dev/null -# This one needs to be in /etc -grep -q tss /etc/group +for grp in kvm tss; do + # Verify we can find through NSS + getent group $grp >/dev/null + # and these need to be directly in /etc + grep -q $grp /etc/group +done From aceec4e3e6a33b02d469e632fe67296f038a728d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 19 Oct 2025 17:33:49 -0400 Subject: [PATCH 271/697] Stop removing systemd-gpt-auto-generator This has a LONG history dating back to this one forking from Fedora CoreOS, which has a custom partitioning setup designed for Ignition. As this is a generic base image, I don't think we should keep that. We do want to support having the generator for those that want it. Out of conservatism I'll send a patch for FCOS to keep disabling it. Signed-off-by: Colin Walters --- minimal/manifest.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/minimal/manifest.yaml b/minimal/manifest.yaml index 646dc26..443353e 100644 --- a/minimal/manifest.yaml +++ b/minimal/manifest.yaml @@ -16,9 +16,6 @@ container-cmd: remove-from-packages: # Generally we expect other tools to do this (e.g. Ignition or cloud-init) - [systemd, /usr/lib/systemd/system/sysinit.target.wants/systemd-firstboot.service] - # We don't want auto-generated mount units. See also - # https://github.com/systemd/systemd/issues/13099 - - [systemd-udev, /usr/lib/systemd/system-generators/systemd-gpt-auto-generator] include: - kernel.yaml From e82aed241b6e4a4ff2b5240fa0506cfb9f56e9ce Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 20 Oct 2025 00:10:44 +0000 Subject: [PATCH 272/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-testing-20251017.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 6b1c3a1..9e1e997 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e3c346b..e450206 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 881780f..96a46cf 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 3df56aa..079125f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 8138b2b..50e09df 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index f6ec359..6b5cda9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 4ec585b..5c06913 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 99aac7d..1d1d328 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 0de0f97..316baf0 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 7e1ce18..de7e16a 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index ae0a51d..9bb4e98 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 11820bd..9cb028a 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251013.0@sha256:bc733db3503b87cb9ba7ee0b0e187a59b5c0d46d39518275392d276bab6f4ee1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e253a442f09f14995b501d0f5f7b3e874e5f4a5a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 20 Oct 2025 01:10:07 +0000 Subject: [PATCH 273/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251017.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index d2135b2..3832721 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index adb3aa1..36a4f00 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 3828020..72c5268 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 8597cb4..be00e2c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 78cf9d3..7330d95 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index bb7c1c5..203704d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 1c093a1..7c85ce6 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index f5dd643..ae24f31 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index ffb1aa3..7ddd3ef 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 6406a6f..fa2de05 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index d3fba0e..0d0f5e1 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 8c77282..e0730a5 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251015.0@sha256:26b5c11dbb446f13704e6c13a16f173567a5c87cb4cf65848a8deefe3cf0e5a6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 3031b572c08756d25d024fb4f07264e349a26b50 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 20 Oct 2025 05:09:05 +0000 Subject: [PATCH 274/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251019.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b916ebb..833a694 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index dc71065..eb0c5b5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 63cbb77..2a451df 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 478d26c..96033de 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 7e99788..0254ccb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0cb0226..03bb79a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index d478d51..6b31db1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index ef2d023..5c50626 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index a2bcd7c..50feed1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ca99c5c..f31c77b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 43c029c..512a33e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 3bbf072..626c39c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251014.n.0@sha256:c2e8c9051c09da364f86e0512b97c77502a8b6ad4ccdd24c149d9cdfa6fe6dab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From aba7b19efabe1f6abe558309e13aa0403c5f6b9e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 21 Oct 2025 03:07:53 +0000 Subject: [PATCH 275/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251020.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 833a694..91c034c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index eb0c5b5..e0b4b7c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 2a451df..62135d7 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 96033de..1cd8560 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0254ccb..0d5b031 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 03bb79a..0dd5206 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6b31db1..a713c38 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5c50626..a16be4a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 50feed1..0393a8a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index f31c77b..3d1ff37 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 512a33e..b579342 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 626c39c..e5f5ba1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251019.n.1@sha256:e518f141c8fc895a6c147aa421506abe2b4977e48cd703fc58007d64dcfd7216 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 480235b721ca81a449ae5001e4ead43b9697c088 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 21 Oct 2025 05:09:19 +0000 Subject: [PATCH 276/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251020.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3832721..f1557c1 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 36a4f00..6cd4ed9 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 72c5268..9e9dc67 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index be00e2c..5fb1a74 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 7330d95..8ef8ba4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 203704d..8bb1459 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 7c85ce6..9489384 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index ae24f31..307b05a 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 7ddd3ef..e999b88 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index fa2de05..0cb4eee 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 0d0f5e1..bc1bda7 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index e0730a5..5f5eb85 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251017.0@sha256:df977df6bd103966949399f0a4bdb2bd0902f436e7c6c50f667a72186c3aec7e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1443b263c4476963286694015c31bd90597fe88a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 22 Oct 2025 15:08:57 +0000 Subject: [PATCH 277/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251022.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 91c034c..ed0dee3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index e0b4b7c..28c4da7 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 62135d7..e7e1ca1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1cd8560..f9f4b4b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0d5b031..dc0268a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0dd5206..0c73def 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a713c38..c8356f9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index a16be4a..58d5dda 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 0393a8a..4e10480 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3d1ff37..6b26983 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b579342..551200b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index e5f5ba1..287504a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251020.n.1@sha256:09fe5330d3717f9c449e2e32e5c2fed90f54b5ee8ae1c219ec3003c075644efc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2e2c9ca660972b8351b0e3420eabd590b5fcb9c0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 23 Oct 2025 18:08:28 +0000 Subject: [PATCH 278/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251023.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index ed0dee3..14facea 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 28c4da7..c56b7d6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index e7e1ca1..b13e98b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index f9f4b4b..5f377db 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index dc0268a..0f1cb98 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0c73def..e9129ba 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c8356f9..ea8acae 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 58d5dda..be3d1ae 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 4e10480..32ee040 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 6b26983..c2d8351 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 551200b..f92e57e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 287504a..ecfc50a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251022.n.0@sha256:1d4c7ca314450d01424db8f690a87169eaf1db5e7233e737f08f118d40b9daac + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 68aeb437fb6d470be3912261a31b47499555e659 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 24 Oct 2025 05:08:42 +0000 Subject: [PATCH 279/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251024.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index f1557c1..a70aa0e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 6cd4ed9..57dbd8a 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 9e9dc67..9fa0fc8 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 5fb1a74..9c701ec 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 8ef8ba4..d39a698 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 8bb1459..55fd62d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 9489384..48421bc 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 307b05a..f49d20a 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index e999b88..06fa573 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 0cb4eee..47ae2d4 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index bc1bda7..263a412 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 5f5eb85..06b2453 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251020.0@sha256:cb9fb5fd2357b7b07e1f2f46743cd220da7e808331dc00972218d1711871e77e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6d3bbdb6645d5500252440612180d7a236fdee9f Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Mon, 27 Oct 2025 10:20:50 -0400 Subject: [PATCH 280/697] bootc-base-imagectl: add --recommends This just connects to the `recommends` treefile key currently for installing recommended RPMs during the transaction. --- bootc-base-imagectl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 25f01ef..e9c5cc4 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -52,6 +52,8 @@ def run_build_rootfs(args): override_manifest['ostree-override-layers'].append(f'overlay/{base}') if args.no_docs: override_manifest['documentation'] = False + if args.recommends: + override_manifest['recommends'] = True if args.sysusers: override_manifest['sysusers'] = 'compose-forced' passwd_mode = 'nobody' if args.nobody_99 else 'none' @@ -175,6 +177,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--cachedir", help="Cache repo metadata and RPMs in specified directory", action='store', default='') build_rootfs.add_argument("--add-dir", help='Copy dir contents into the target', action='append', default=[], metavar='DIR') build_rootfs.add_argument("--no-docs", help="Don't install documentation", action='store_true') + build_rootfs.add_argument("--recommends", help="Whether to install recommended packages", action='store_true') build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') build_rootfs.add_argument("--nobody-99", help=argparse.SUPPRESS, action='store_true') build_rootfs.add_argument("--repo", help="Enable specific repositories only", action='append', default=[], metavar='REPO') From 49d881005f84f9b372a13d96497491a05435c66c Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Wed, 29 Oct 2025 08:44:31 -0400 Subject: [PATCH 281/697] chore: update fedora-43 repo url to final Fedora 43 was released, use release and updates repos Signed-off-by: Paul Whalen --- fedora-43.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fedora-43.yaml b/fedora-43.yaml index 9ae0164..a3cdc33 100644 --- a/fedora-43.yaml +++ b/fedora-43.yaml @@ -2,5 +2,6 @@ # will be removed in the future. releasever: 43 repos: - - fedora-devel + - fedora + - fedora-updates include: fedora-bootc.yaml From 2e9c1b585d0d38e6f3fb8e65fa7c0e1390357621 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Oct 2025 09:11:44 +0000 Subject: [PATCH 282/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251030.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index a70aa0e..7ac87c2 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 57dbd8a..a0fa9d6 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 9fa0fc8..af293ff 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 9c701ec..e21be8a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index d39a698..2d4f367 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 55fd62d..878a96c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 48421bc..98811b6 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index f49d20a..baed85f 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 06fa573..8ffb68d 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 47ae2d4..36d906a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 263a412..b31124c 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 06b2453..7c0f9c9 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251024.0@sha256:dc05fbada6005238f1a70adef05bb4ecd56b76d7050a3dc9a3d6c9a57eb3eafd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6c1f3fc0527653c2ad96e2a48d0e3bc8374bb751 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Oct 2025 13:12:58 +0000 Subject: [PATCH 283/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251030.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 14facea..50d6f9a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index c56b7d6..8781951 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index b13e98b..b733413 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 5f377db..6c79330 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0f1cb98..b985065 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index e9129ba..51c3630 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ea8acae..03a9131 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index be3d1ae..1988913 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 32ee040..c4a2a06 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c2d8351..79785dd 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f92e57e..05ec5aa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ecfc50a..ace9dad 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251023.n.0@sha256:ad7fc2e3d09ba1cd29d4319f6ee5a283ee409930ce1fa1fe1207f57a57382d66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e60e9a19ce206cfa73d9149b54b88b972ae30845 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Oct 2025 15:11:38 +0000 Subject: [PATCH 284/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-testing-20251030.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 9e1e997..d717741 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e450206..4c77797 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 96a46cf..4843da3 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 079125f..3b65419 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 50e09df..58738ba 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 6b5cda9..3e955a7 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 5c06913..d2aa986 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 1d1d328..c892bf0 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 316baf0..0564bc9 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index de7e16a..53ed11d 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9bb4e98..ca0e59e 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 9cb028a..bf5f323 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251017.0@sha256:6f01e3e69552c6300d407a0021f015166243f3fa6a3fed9f32c45b8a0e11d39a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c178910f99e7f580259aba4cd36ffa572006a839 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 31 Oct 2025 04:08:04 +0000 Subject: [PATCH 285/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-testing-20251031.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 7ac87c2..933927f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index a0fa9d6..249f165 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index af293ff..14b7135 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index e21be8a..978ee2d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 2d4f367..63497e5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 878a96c..5e1afd2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 98811b6..0a6fb59 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index baed85f..38b14de 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8ffb68d..a8a10c6 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 36d906a..27cfbac 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b31124c..1c8baef 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 7c0f9c9..9331786 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251030.0@sha256:df97002af818043965723944cfcd9c7c2d74fad61ff9bc2976b4c6cc2f0dd0cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a495cecb0d5d32973347731db3ec8fbd0bea143c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 31 Oct 2025 21:08:34 +0000 Subject: [PATCH 286/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose:fedora-rawhide-20251030.n.0 docker digest to 1df8227 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 50d6f9a..b8c11f3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 8781951..6c4439a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index b733413..07ee627 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 6c79330..1d7ccb8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index b985065..f5788fe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 51c3630..e00f381 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 03a9131..6735fd7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 1988913..9e6c80b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index c4a2a06..9038945 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 79785dd..af49e64 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 05ec5aa..eeebd6b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ace9dad..fe242f6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:d899fa9289df1141e60dd467d5d189bb669173fa960bb7a5e66d9daacb0fa01a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5cf4af6d68be8a2d3677bfeeb11291894609ba2e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 3 Nov 2025 00:10:01 +0000 Subject: [PATCH 287/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-testing-20251031.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index d717741..281cff1 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 4c77797..ffafcd9 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 4843da3..8960e58 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 3b65419..8625f0c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 58738ba..952f2e5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 3e955a7..4d26bcd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index d2aa986..bea9e41 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index c892bf0..7de2838 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 0564bc9..13cf4ba 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 53ed11d..68fc237 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index ca0e59e..b33e7ff 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index bf5f323..dab0810 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251030.0@sha256:7e205e2c54899536a632569cdd7132289ef634277ce4173090b5a8910fdc89cf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 794239d914280631f08a46e036f8e30d1444b248 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 3 Nov 2025 02:09:28 +0000 Subject: [PATCH 288/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251102.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b8c11f3..8a2bfe4 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 6c4439a..7e1d8cd 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 07ee627..d0a9d14 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1d7ccb8..d21bab2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f5788fe..016e6b1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index e00f381..4497c0e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6735fd7..140706c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9e6c80b..1635f55 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 9038945..04ef581 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index af49e64..d0a3333 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index eeebd6b..f3c4a3b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index fe242f6..4a64179 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251030.n.0@sha256:1df8227e7ad5a766fc12984de394f653a4a92ece2c1da624c6e556e952fdebfb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1b9606c4a8acd14727e06c72e4cf126e2a86f760 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 3 Nov 2025 21:10:22 +0000 Subject: [PATCH 289/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251103.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 8a2bfe4..7d8e67b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 7e1d8cd..f6f688c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index d0a9d14..4e2809a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index d21bab2..f393ab2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 016e6b1..aa91f80 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 4497c0e..cb3d075 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 140706c..a9714eb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 1635f55..3913f75 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 04ef581..1014b0f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d0a3333..24d053a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f3c4a3b..be4893a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 4a64179..7fab29e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251102.n.0@sha256:efbb1d14e37fbb1d623b4fb4e541f7944de7be6e0ffe740cade3e5890a26ebcf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b051487d9bf59f2fed9878219153af16fbd5a050 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 4 Nov 2025 12:09:54 +0000 Subject: [PATCH 290/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251104.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 7d8e67b..a04d89d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index f6f688c..ba8d154 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 4e2809a..30fcea1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index f393ab2..b11ebb7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index aa91f80..ff02bea 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index cb3d075..b32d9a0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a9714eb..2dba2cc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3913f75..c5514a2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 1014b0f..1351b88 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 24d053a..fe478c0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index be4893a..3f28a32 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7fab29e..40030b1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251103.n.1@sha256:b5b8072990dc66169b7c2970574e5b271673c21a3a2f9c4dde2942199a3c3488 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 76809a51bfc03fee2cc836b6d89a47834609018d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 5 Nov 2025 09:08:27 +0000 Subject: [PATCH 291/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251105.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index a04d89d..df801db 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index ba8d154..5ce9571 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 30fcea1..1c058e7 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index b11ebb7..2533186 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index ff02bea..ad29f15 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b32d9a0..54d5962 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2dba2cc..2df51c5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index c5514a2..9f1e78c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 1351b88..56a1a7e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index fe478c0..6eb497a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3f28a32..42b6133 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 40030b1..dcfebbf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251104.n.0@sha256:c2a467da92b9405b5ab483292f58063475203a77d521d2fb06069d1deeac1a8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 97fb4fd579926cfe009f4142716ba7c82666436c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 5 Nov 2025 11:12:05 +0100 Subject: [PATCH 292/697] chore: update Fedora 43 compose image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 281cff1..b103f98 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index ffafcd9..a09960d 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 8960e58..f848eb9 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 8625f0c..7c735cc 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 952f2e5..322a428 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 4d26bcd..59fd1c7 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index bea9e41..937b54a 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 7de2838..feeef17 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 13cf4ba..68e9045 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 68fc237..d3476a5 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index b33e7ff..9b3d3a4 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index dab0810..7b6f117 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-testing-20251031.0@sha256:5d6fd1aa211e7a039ec5146ae081b6e0ae560e36abb20c6b5d2178d9cf35a8d5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 100cfed6f3abd546bd5169991a5f2489d0766e37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 5 Nov 2025 11:08:30 +0100 Subject: [PATCH 293/697] chore: update Fedora 42 compose image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 933927f..c57247c 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 249f165..d55ee0a 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 14b7135..3713ab7 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 978ee2d..47bac23 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 63497e5..19ad410 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 5e1afd2..a257684 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 0a6fb59..7a5cf54 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 38b14de..4970d23 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index a8a10c6..b8af80c 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 27cfbac..80592ae 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 1c8baef..d85305a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 9331786..7b0d7d2 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-testing-20251031.0@sha256:bfa2c5067476c6a16d475ecfafb5e59edb679ecb8b2ec2f1710272d8398ccac9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 3a570bbc27d3013e223b22a5a32546d0450b612a Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 5 Nov 2025 10:08:47 -0500 Subject: [PATCH 294/697] bootc-base-imagectl: add --no-initramfs This just connects to the `no-initramfs` treefile key that was added in https://github.com/coreos/rpm-ostree/pull/5529. --- bootc-base-imagectl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index e9c5cc4..33f832a 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -54,6 +54,8 @@ def run_build_rootfs(args): override_manifest['documentation'] = False if args.recommends: override_manifest['recommends'] = True + if args.no_initramfs: + override_manifest['no-initramfs'] = True if args.sysusers: override_manifest['sysusers'] = 'compose-forced' passwd_mode = 'nobody' if args.nobody_99 else 'none' @@ -178,6 +180,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--add-dir", help='Copy dir contents into the target', action='append', default=[], metavar='DIR') build_rootfs.add_argument("--no-docs", help="Don't install documentation", action='store_true') build_rootfs.add_argument("--recommends", help="Whether to install recommended packages", action='store_true') + build_rootfs.add_argument("--no-initramfs", help="Whether to generate an initramfs for the roots", action='store_true') build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') build_rootfs.add_argument("--nobody-99", help=argparse.SUPPRESS, action='store_true') build_rootfs.add_argument("--repo", help="Enable specific repositories only", action='append', default=[], metavar='REPO') From 3bab2d3f96e4f52209df40f0e7bd6dff07145e30 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 6 Nov 2025 05:10:46 +0000 Subject: [PATCH 295/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251106.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index c57247c..89738ff 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index d55ee0a..d73f48d 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 3713ab7..e08fa95 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 47bac23..691c6fc 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 19ad410..c03da5e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index a257684..535aa46 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 7a5cf54..f2e3e5b 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 4970d23..ef15d70 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index b8af80c..d55a7d1 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 80592ae..f05bbd1 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index d85305a..2832c18 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 7b0d7d2..eb6cb92 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251105.0@sha256:edc2e6e575c576bb3c34ad97303feef808ceec8062746607f74f5be8b4bf2455 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6a0ff6694d646980ec832b8ce99e9fe2042668df Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 7 Nov 2025 04:08:46 +0000 Subject: [PATCH 296/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251107.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 89738ff..f6431fa 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index d73f48d..5b1f897 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index e08fa95..2e35b36 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 691c6fc..4b1a753 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index c03da5e..649ad69 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 535aa46..a211738 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index f2e3e5b..ef5c6b9 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index ef15d70..b36e8a4 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index d55a7d1..8969168 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index f05bbd1..056e11a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 2832c18..6917faf 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index eb6cb92..e47b8db 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251106.0@sha256:aacf6b7cac05e4f4d3a451e618cec5ec0cd54693d151815730bc5de4087f7855 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1d85b4f81093f3318f882a77fc7393a56c2f15e7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 7 Nov 2025 11:08:32 +0000 Subject: [PATCH 297/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251107.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index df801db..1a7fc73 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 5ce9571..f289a61 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 1c058e7..dc79f8c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2533186..9ccf601 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index ad29f15..d46e26e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 54d5962..968acd7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2df51c5..45c8763 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9f1e78c..ee7a424 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 56a1a7e..e8db881 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 6eb497a..5ef821d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 42b6133..224f534 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index dcfebbf..5235e2c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251105.n.0@sha256:dad6335c97743a6c909e710ec4100e65ebbff5b50ef8c9a3adbdc7bae11c9b83 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 64d23e0e3f60c7607a9abbacc77012acc568ed7b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 10 Nov 2025 02:09:53 +0000 Subject: [PATCH 298/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251109.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 1a7fc73..ac938dd 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index f289a61..679018c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index dc79f8c..a50f801 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 9ccf601..8e9630e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index d46e26e..fc747fa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 968acd7..8a76934 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 45c8763..db336d1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index ee7a424..83f9cbf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index e8db881..9ecc0f2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 5ef821d..b6dfd7d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 224f534..287bfe0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 5235e2c..398f151 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251107.n.0@sha256:cef6ab72b52531df3826301d0c868d293791a960e7587379ac008e2e2f455593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d91395bae2412957460edeb6cbd17a0fe9880b6b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 10 Nov 2025 03:09:51 +0000 Subject: [PATCH 299/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20251110.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index b103f98..173abd4 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index a09960d..b824e04 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index f848eb9..0a37bf2 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 7c735cc..c7ca028 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 322a428..a80d564 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 59fd1c7..6286075 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 937b54a..d51ec00 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index feeef17..b33f520 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 68e9045..6610b98 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d3476a5..1293e94 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9b3d3a4..b0d6514 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 7b6f117..bf70b07 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251105.0@sha256:0eede75f04f6d0504743a47bb34a32d0b9508d6b21648e3129274f09b5693dbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 48241cb72ca160f016ba64b1607b04a252562e24 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 10 Nov 2025 09:10:12 +0000 Subject: [PATCH 300/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251110.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index ac938dd..a566412 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 679018c..77f16b8 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index a50f801..49d716e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8e9630e..6684d79 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index fc747fa..a42b804 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 8a76934..5e623e3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index db336d1..18118fc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 83f9cbf..fc4bcb5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 9ecc0f2..8310e41 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b6dfd7d..39471bf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 287bfe0..f53b127 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 398f151..66e9202 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251109.n.0@sha256:4e4f0d39ab99214cc8a799ca1915df8c8e803f5bc2f889c3f9868bddd499248a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f1de2d56bb07522a7a83b5bf999ac0801a72c977 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 11 Nov 2025 04:07:52 +0000 Subject: [PATCH 301/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251111.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index f6431fa..4d79cf8 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 5b1f897..a69fc4b 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 2e35b36..71f3085 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 4b1a753..ed3ed9d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 649ad69..650fea0 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index a211738..98a987c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index ef5c6b9..417f85f 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index b36e8a4..bb1f9eb 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8969168..730a048 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 056e11a..358382e 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 6917faf..dd4db57 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index e47b8db..d6ce954 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251107.0@sha256:5f8876d0f93588b1b634067bf7416e49934d9b4e266b8cc2c37344322e5a9c8a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5d73072cf97858af01bef028f83147bd085b5db4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 12 Nov 2025 00:08:12 +0000 Subject: [PATCH 302/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251111.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index a566412..ec8b558 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 77f16b8..0856a6d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 49d716e..41dd75e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 6684d79..e14213f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a42b804..9f6ff14 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 5e623e3..dfff605 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 18118fc..bc595ba 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index fc4bcb5..c2b0fa3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 8310e41..aa4f80a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 39471bf..f879cdf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f53b127..639949b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 66e9202..604b672 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251110.n.0@sha256:b255f8218cbda06b860ca8d2be51e7faef9d003449670e14ebcade3f3d926d4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d3e6b73ab5465e6775825f9d775ec13c841c56dd Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 12 Nov 2025 04:09:22 +0000 Subject: [PATCH 303/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251112.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 4d79cf8..2170a81 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index a69fc4b..32a77c6 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 71f3085..ceac710 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index ed3ed9d..df1bfa8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 650fea0..543f7c4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 98a987c..5525a7a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 417f85f..e4fff73 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index bb1f9eb..d175839 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 730a048..f8bda63 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 358382e..b31d885 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index dd4db57..c9f1dea 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index d6ce954..c64a0e9 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251111.0@sha256:270cfbed77efcef92689302249d8f2ef9808c1ed8e1a91fa309f102b005288b7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cc01bd8c846c77f11cf47673a186880610036074 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 12 Nov 2025 15:10:43 +0000 Subject: [PATCH 304/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251112.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index ec8b558..69c5a60 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 0856a6d..36760d0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 41dd75e..8ac8712 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index e14213f..389b6e4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 9f6ff14..a0d6348 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index dfff605..afd2d17 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index bc595ba..4f10bc0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index c2b0fa3..e5eabdc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index aa4f80a..f15248b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index f879cdf..eb77c43 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 639949b..e7c7c25 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 604b672..ec6deb4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251111.n.1@sha256:eb131ebc39764094c42b6313efcde396737c44d97346fdd05c442d6e058c9f10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cedf2cf2bcb2f286131150229acff94329b3b494 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 17 Nov 2025 01:10:22 +0000 Subject: [PATCH 305/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20251116.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 173abd4..66bce76 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index b824e04..e60d8b1 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 0a37bf2..827e4e9 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index c7ca028..40ed047 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index a80d564..08e046d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 6286075..f86ebef 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index d51ec00..90cf2a8 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index b33f520..e976a4b 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 6610b98..d9c7e1c 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 1293e94..d9467d8 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index b0d6514..67e0f2f 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index bf70b07..2ed302a 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251110.0@sha256:03f03defd8308967d64f8e25f27df116b700cc589fcfef3911322a4e58108e36 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 28e52f4dd41215d411ee3a223b7c37173f837140 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 17 Nov 2025 05:12:43 +0000 Subject: [PATCH 306/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251117.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2170a81..7c0c9ee 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 32a77c6..86bce00 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ceac710..3ed8639 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index df1bfa8..5a1d7be 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 543f7c4..483eb73 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 5525a7a..77d50be 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index e4fff73..6f60728 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d175839..e49d315 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index f8bda63..ec517e4 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index b31d885..6ae266f 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index c9f1dea..4b21779 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index c64a0e9..9feb293 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251112.0@sha256:7b2b1f8501431d7ce786458bfb08dfa3d103f2c2b0fd729750804177b698bad5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5345866b0fe8c5a8d4e684d03c6cb67ec24291c7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 17 Nov 2025 10:08:47 +0000 Subject: [PATCH 307/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251117.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 69c5a60..ce1d21b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 36760d0..2a7605f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 8ac8712..1f49765 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 389b6e4..7b4f394 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a0d6348..6fe683a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index afd2d17..a14d460 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 4f10bc0..13cf985 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e5eabdc..0c0a6cc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index f15248b..25e2c64 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index eb77c43..83b44c1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index e7c7c25..3191d04 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ec6deb4..ee75b2d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251112.n.0@sha256:f53a4f6730f92be1cb2365d465912a65e86ede774b0ca19d03912c695434afee + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 910a6e65bbb45dfd8c89a0afe76ceb7808a01528 Mon Sep 17 00:00:00 2001 From: Wei Shi Date: Mon, 10 Nov 2025 22:31:09 +0800 Subject: [PATCH 308/697] Add man-db to the standard tier Signed-off-by: Wei Shi --- standard/manifest.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/standard/manifest.yaml b/standard/manifest.yaml index 001235c..f1ee4b7 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -44,6 +44,8 @@ packages: - sos # Make Ansible "package_facts" builtin work by default - python3-rpm + # Used by admins interactively + - man-db # These are random architecture-specific packages packages-x86_64: @@ -75,7 +77,7 @@ exclude-packages: - perl-interpreter - nodejs - grubby - - cowsay # Just in case + - cowsay # Just in case # Let's make sure initscripts doesn't get pulled back in # https://github.com/coreos/fedora-coreos-tracker/issues/220#issuecomment-611566254 - initscripts From 96b9a849366d89658e56012431be142063de6bfa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 18 Nov 2025 04:08:38 +0000 Subject: [PATCH 309/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251118.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 7c0c9ee..0d4fdd9 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 86bce00..ba6e30f 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 3ed8639..9babe88 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 5a1d7be..0f20cfe 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 483eb73..3e0cf78 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 77d50be..f5bf08f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 6f60728..4bee84b 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index e49d315..df5c8a9 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index ec517e4..ea92466 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 6ae266f..aba3d1d 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4b21779..f279553 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 9feb293..3e3b349 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251117.0@sha256:761f3785379365d5557bb83b07e94b5e8a34180cc9883988da94f5e48115e5db + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0f4109e1946555b54e53d30a4d5f1c124caedc24 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 18 Nov 2025 09:20:28 +0000 Subject: [PATCH 310/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251118.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index ce1d21b..d72223f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 2a7605f..1d9b640 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 1f49765..d731ee1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 7b4f394..558439c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6fe683a..d0a77b1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a14d460..39fb018 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 13cf985..cff395b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 0c0a6cc..fe89b84 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 25e2c64..101115f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 83b44c1..70f2a4a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3191d04..e0d61b4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ee75b2d..ee049b9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251117.n.0@sha256:c559d77ce481c4fe244760c9ccbba384983b0e3f64b22e15b2f0e7605142b7cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 596efc4f7a8aac9a5469f366248b92e21b702e5d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 19 Nov 2025 05:09:11 +0000 Subject: [PATCH 311/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251119.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 0d4fdd9..304bc32 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index ba6e30f..e2c725f 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 9babe88..ad28fc0 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 0f20cfe..68dc276 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 3e0cf78..04eb204 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index f5bf08f..23b5482 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 4bee84b..453fbd7 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index df5c8a9..5a7679d 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index ea92466..6c75358 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index aba3d1d..fd5a0e0 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index f279553..9296f40 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 3e3b349..2146023 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251118.0@sha256:cb261a67616a2ab95acc6bd85d813940a23ac9950f70a61c06f338ca02a7daa1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cd91086b67c7787ecf4685ac51c72c5ae161bc89 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 19 Nov 2025 09:11:06 +0000 Subject: [PATCH 312/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251119.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d72223f..e7697bf 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 1d9b640..369b51a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index d731ee1..5df8fde 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 558439c..e6bc73b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index d0a77b1..093fc2f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 39fb018..e2f025a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index cff395b..d56d271 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index fe89b84..73d5fa1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 101115f..a622b06 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 70f2a4a..c877de9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index e0d61b4..fe32578 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ee049b9..f2d1424 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251118.n.0@sha256:0391a13d980f152328945f35abfe97ad42715efa687862a326493e7dbdc64a15 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 15f0d43a50ae4e02ffdf72b01373d6250c4c11b5 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 21 Nov 2025 09:08:47 +0000 Subject: [PATCH 313/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251121.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index e7697bf..240e5e5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 369b51a..9cfd637 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 5df8fde..a3696cb 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index e6bc73b..5272b85 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 093fc2f..3c63467 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index e2f025a..21242c8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index d56d271..4c53285 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 73d5fa1..9849b13 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index a622b06..031e7be 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c877de9..a299a67 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index fe32578..62ca7a4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index f2d1424..9746c38 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251119.n.0@sha256:52115aa44fd09d934798bd973d73657adc388cd32188cfd055f374fccfdd3fd2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d2f1bc73f0bd40273e53db4426096658ad45b564 Mon Sep 17 00:00:00 2001 From: Wei Shi Date: Mon, 24 Nov 2025 14:50:27 +0800 Subject: [PATCH 314/697] Make WALinuxAgent-udev x86_64 and aarch64 specific https://gitlab.com/fedora/bootc/base-images/-/issues/70 Signed-off-by: Wei Shi --- standard/manifest.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/standard/manifest.yaml b/standard/manifest.yaml index f1ee4b7..c1930a3 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -24,7 +24,6 @@ packages: # Additional firewall support; we aren't including these in RHCOS or they # don't exist in RHEL - iptables-services - - WALinuxAgent-udev # Allow communication between sudo and SSSD # for caching sudo rules by SSSD. # https://github.com/coreos/fedora-coreos-tracker/issues/445 @@ -50,6 +49,7 @@ packages: # These are random architecture-specific packages packages-x86_64: - irqbalance + - WALinuxAgent-udev packages-ppc64le: - irqbalance - librtas @@ -57,6 +57,7 @@ packages-ppc64le: - ppc64-diag-rtas packages-aarch64: - irqbalance + - WALinuxAgent-udev postprocess: # See: https://github.com/coreos/fedora-coreos-tracker/issues/1253 From 8e7c87a7b5f21f49ebedfdaa254b1a81bfdb7879 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 24 Nov 2025 19:08:26 +0000 Subject: [PATCH 315/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251124.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 304bc32..11e2df5 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index e2c725f..a43c5b3 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ad28fc0..d46ac74 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 68dc276..12271b7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 04eb204..b08aee7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 23b5482..e022e9d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 453fbd7..5e5c15e 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 5a7679d..44e4225 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 6c75358..97de799 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index fd5a0e0..d6984b9 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 9296f40..2490c0a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2146023..fc76d6e 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251119.0@sha256:569f1376d67f645c488e972a72ca5d3a1260a6f2ef7762043f9677340c507b05 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b10012518c8edf0e7a9cbcfa97aeff5c5f590c21 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Mon, 24 Nov 2025 14:25:39 -0500 Subject: [PATCH 316/697] standard: drop rm of /usr/bin/dotlockfile s390utils dropped the liblockfile dependency a while ago so we can drop this. https://github.com/coreos/fedora-coreos-tracker/issues/1253#issuecomment-1212056339 --- standard/manifest.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/standard/manifest.yaml b/standard/manifest.yaml index f1ee4b7..e38094d 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -58,17 +58,6 @@ packages-ppc64le: packages-aarch64: - irqbalance -postprocess: - # See: https://github.com/coreos/fedora-coreos-tracker/issues/1253 - # https://bugzilla.redhat.com/show_bug.cgi?id=2112857 - # https://github.com/coreos/rpm-ostree/issues/3918 - # Temporary workaround to remove the SetGID binary from liblockfile that is - # pulled by the s390utils but not needed for /usr/sbin/zipl. - - | - #!/usr/bin/env bash - set -xeuo pipefail - rm -f /usr/bin/dotlockfile - # Things we don't expect to ship on the host. We currently # have recommends: false so these could only come in via # hard requirement, in which case the build will fail. From ec100b15729c47ab06518bba22497a8018cdc68a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 24 Nov 2025 21:13:30 +0000 Subject: [PATCH 317/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251124.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 240e5e5..538f0fa 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 9cfd637..2c498ee 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index a3696cb..5ec55dd 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 5272b85..4eb4d2b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3c63467..b986880 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 21242c8..7eeb58e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 4c53285..c4c3318 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9849b13..45a522b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 031e7be..aed1150 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a299a67..a72ae31 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 62ca7a4..a1e84f4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 9746c38..396249b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251121.n.0@sha256:50334856b060486fb0a80d9bfe744724bb804a84036edfb648f24005cf0c1089 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 34c7f0320f04795809c8606ce1a2ef3a3d5a7125 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 25 Nov 2025 10:09:13 +0000 Subject: [PATCH 318/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251125.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 538f0fa..0d99bce 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 2c498ee..f83a8d5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 5ec55dd..456e9f8 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 4eb4d2b..068f0bc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index b986880..479ec29 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 7eeb58e..c465a45 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c4c3318..ab1f951 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 45a522b..81833f0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index aed1150..d46bb2e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a72ae31..be53b28 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a1e84f4..bd2f741 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 396249b..eac794d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251124.n.0@sha256:5b80bcaf2f1cbf58befe404f7603f41615795c55aad0d983019988d5333b0975 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f4defcb9944244887111b6f994c5063b81bfb567 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 26 Nov 2025 09:09:27 +0000 Subject: [PATCH 319/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251126.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 0d99bce..29afc57 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index f83a8d5..7720398 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 456e9f8..5055d7b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 068f0bc..995ad73 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 479ec29..9613e36 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c465a45..0b29aad 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ab1f951..2053050 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 81833f0..42fdaa1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index d46bb2e..301741e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index be53b28..e71fcdf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index bd2f741..274aa7f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index eac794d..b8b048e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251125.n.0@sha256:34fc82854c717849aed559ba2aaeaba64b0f7865d04d61270c1f14cd0d0ae18a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ddf61cd4c544355e870ee3567c1bd8f2a47edc8f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 27 Nov 2025 04:07:57 +0000 Subject: [PATCH 320/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251127.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 11e2df5..59264e5 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index a43c5b3..ff31a0d 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index d46ac74..e62d421 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 12271b7..1b02550 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index b08aee7..efaa092 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index e022e9d..35e5594 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 5e5c15e..602dbaf 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 44e4225..8df717d 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 97de799..c6e5a8a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d6984b9..9bb9d59 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 2490c0a..24ab494 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index fc76d6e..e68470b 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251124.0@sha256:8ccc575fe171aa52a06b5e92a61f4bf9dfaa91c7b6ea0dacf59529eab7942926 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cb211a75fd50ab5621d93405b61cdee32000253d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 27 Nov 2025 10:08:17 +0000 Subject: [PATCH 321/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251127.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 29afc57..3ceeef2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 7720398..cbeff59 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 5055d7b..56b5318 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 995ad73..2571e1c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 9613e36..b308e17 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0b29aad..edf436f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2053050..b45a8f6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 42fdaa1..62ca847 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 301741e..8fc0b94 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e71fcdf..6c99016 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 274aa7f..72eee14 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b8b048e..0647512 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251126.n.0@sha256:076a2c64610ad7aa21dfbd79da4428461d3032896bf8124776a4494018724074 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From dce60a4fd91ce1d5e500065590e8fde66a845cd6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 28 Nov 2025 09:08:34 +0000 Subject: [PATCH 322/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251128.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 3ceeef2..a4fce20 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index cbeff59..47ba568 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 56b5318..c8c9fd3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2571e1c..157c976 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index b308e17..aa76506 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index edf436f..b8f05fd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index b45a8f6..f898c38 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 62ca847..79dbe5f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 8fc0b94..7637e9d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 6c99016..034823e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 72eee14..d9117f2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 0647512..de5e00c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251127.n.0@sha256:f0e82ec2f59927b9059e417968321e4e7ee4eedc935c8bd474e901cb858b4d62 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2a76fc84aae7b725e216021c2f36d60e7bddc5bf Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 1 Dec 2025 00:09:49 +0000 Subject: [PATCH 323/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251129.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 59264e5..a64a5e6 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index ff31a0d..78f6344 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index e62d421..c39150d 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 1b02550..1ba1759 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index efaa092..7afcead 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 35e5594..14b1969 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 602dbaf..fe8ad4b 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 8df717d..a7b9c73 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c6e5a8a..48dc795 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 9bb9d59..9228fb9 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 24ab494..83d3b35 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index e68470b..ed290c1 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251127.0@sha256:ccd2fcbfcd77faec39655d10dc9a8807ea69371823602ac521404e261697d4d4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f6ce33ec1b439038a3a98b0d581386642ef690cc Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 1 Dec 2025 01:08:51 +0000 Subject: [PATCH 324/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20251130.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 66bce76..6586697 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e60d8b1..47cccc0 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 827e4e9..4bd07fc 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 40ed047..9a66112 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 08e046d..d1a885f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index f86ebef..d4bbd88 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 90cf2a8..f63970c 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index e976a4b..61f94fb 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index d9c7e1c..6cc8bea 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d9467d8..ff9636c 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 67e0f2f..0b6dd96 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 2ed302a..36bd3c0 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251116.0@sha256:f2e536ab4a994e4428c5f5f37fa66fceb33f77caa5c887769c8d89613197a8c6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ae6f11683c26c4156bf648c2daaf09699168cad9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 1 Dec 2025 02:09:20 +0000 Subject: [PATCH 325/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251130.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index a4fce20..d78491c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 47ba568..d8e45a2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index c8c9fd3..64b6e22 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 157c976..24208a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index aa76506..5e6fdcf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b8f05fd..a55e1cd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index f898c38..82a338b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 79dbe5f..6bfced1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 7637e9d..6f2ddb8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 034823e..dfcac10 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index d9117f2..915263a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index de5e00c..76a7643 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251128.n.0@sha256:a03177fffc8af6414edc6e6fea006f1ee4300eb43c54e4513a05db74ec736327 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0521704970eddf7a90fd99000551ad2a719dd1ac Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 1 Dec 2025 03:09:17 +0000 Subject: [PATCH 326/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251201.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index a64a5e6..5e85d6b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 78f6344..67f8730 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index c39150d..6c966a4 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 1ba1759..18acd72 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 7afcead..c4df8ea 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 14b1969..8f9bfaa 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index fe8ad4b..0572765 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index a7b9c73..836c027 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 48dc795..3d24a6a 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 9228fb9..8d6fcaf 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 83d3b35..122ecf5 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index ed290c1..88c7622 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251129.0@sha256:dafb40eb835af7c7d487bbb03d9860dc401974037f931a39f1bb2e5b9be87ef1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9ce3bc586abc92d54d8fe833ed49edcb0715e446 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 1 Dec 2025 21:08:57 +0000 Subject: [PATCH 327/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251201.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d78491c..b8cab41 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index d8e45a2..f90c6f3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 64b6e22..713402b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 24208a1..94b2d8d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5e6fdcf..0390233 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a55e1cd..21ba6ad 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 82a338b..7a100b0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 6bfced1..9346b67 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 6f2ddb8..b246753 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index dfcac10..a209b2c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 915263a..ab2a0cf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 76a7643..faa064c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251130.n.0@sha256:a1e6292b711b81233ee5baa5f34795b8b6492490cee7008d84a96b98a1b3021b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f4c860af09089d20d2d43703b25a20528ec153f5 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 12 Dec 2025 04:07:14 +0000 Subject: [PATCH 328/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251212.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 5e85d6b..6033272 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 67f8730..5c1f431 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 6c966a4..2206349 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 18acd72..ec23ab2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index c4df8ea..ed612ba 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 8f9bfaa..7dee77b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 0572765..bbb7942 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 836c027..92f73dd 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 3d24a6a..a1a2ea7 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8d6fcaf..9588991 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 122ecf5..7549434 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 88c7622..67df649 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251201.0@sha256:a4ab28df6087acbcc8d93f8b97014342ae06907b6b24ebe6d3d21ac6241f0b7b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b2512a6d4a50e52beb63e46158cb43e5019fdc00 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 12 Dec 2025 09:09:54 +0000 Subject: [PATCH 329/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251212.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b8cab41..e899b3b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index f90c6f3..6fb057a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 713402b..2358338 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 94b2d8d..525bd33 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0390233..93d2ac0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 21ba6ad..8173523 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 7a100b0..43055fe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9346b67..194cc63 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index b246753..ebaaa9d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a209b2c..1d23bad 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index ab2a0cf..68d935c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index faa064c..ce41241 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251201.n.1@sha256:886ddc88ac18528c189f907ace91fa1d0dc059ff7a979c413c58d6cb8b369e4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e0d1573bb537c29befeaeed9b0a76a7bdd1c21ec Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 15 Dec 2025 00:11:21 +0000 Subject: [PATCH 330/697] chore(deps): update konflux references to 8f5fae7 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 6033272..de7b2e8 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 5c1f431..c122ad8 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 2206349..e3f200e 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index ec23ab2..55dd07d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index ed612ba..79302cd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 7dee77b..61a95b5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index bbb7942..9989b8d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 92f73dd..255d586 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index a1a2ea7..789f630 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 9588991..8190cf1 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 7549434..96cfd1a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 67df649..764d5b2 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 6586697..409812a 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 47cccc0..84fce1c 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 4bd07fc..c61f24f 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 9a66112..df7e4eb 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index d1a885f..8a5e6a6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index d4bbd88..83ada27 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index f63970c..1b499d4 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 61f94fb..542139a 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 6cc8bea..96cc9f7 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index ff9636c..d9aeceb 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0b6dd96..53c89a5 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 36bd3c0..cc3f247 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index e899b3b..3c0e073 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 6fb057a..33da955 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 2358338..34e6a39 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 525bd33..8c7333c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 93d2ac0..fa3295c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 8173523..072c53b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 43055fe..a17d4aa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 194cc63..b114ceb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ebaaa9d..022adf4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1d23bad..0088e69 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 68d935c..29bc789 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ce41241..72bd800 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5bcbc7d13dbd3f2420df1014ad60468c376f574ff29912131b610702daec79fb + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 21d8bf135723e996debcfe03d1fbdc65a7dfff83 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 15 Dec 2025 01:11:46 +0000 Subject: [PATCH 331/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20251212.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 409812a..b50985b 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 84fce1c..e7fa602 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index c61f24f..642a1d1 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index df7e4eb..66b847c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 8a5e6a6..9cdfc98 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 83ada27..ca165e0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 1b499d4..9b57b71 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 542139a..4af57f1 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 96cc9f7..0ad39ae 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d9aeceb..95de4e4 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 53c89a5..5d65680 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index cc3f247..08c2161 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251130.0@sha256:ae856c6ff35aabc1020a33b518043b10e82d2619522f361585b35f6cfc68acab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 905fe91159689eee7cb104cd335f1d713270c1d2 Mon Sep 17 00:00:00 2001 From: Xiaofeng Wang Date: Tue, 25 Nov 2025 14:32:59 +0800 Subject: [PATCH 332/697] Add workaround for https://issues.redhat.com/browse/RHEL-106203 Signed-off-by: Xiaofeng Wang --- minimal/tmpfiles.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/minimal/tmpfiles.yaml b/minimal/tmpfiles.yaml index 0065b98..f47d3a4 100644 --- a/minimal/tmpfiles.yaml +++ b/minimal/tmpfiles.yaml @@ -6,3 +6,5 @@ postprocess: # Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=771713 d /var/lib/rpm-state 0755 - - - EOF + # Workaround for https://issues.redhat.com/browse/RHEL-106203 + rm -f /usr/lib/tmpfiles.d/home.conf From 42dec2dd4898267795844ad7f376c5b215ec2a93 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 19 Dec 2025 09:09:28 +0000 Subject: [PATCH 333/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251219.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 3c0e073..2c0dc6b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 33da955..7cc2ad0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 34e6a39..7519cce 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8c7333c..c276c08 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index fa3295c..8aaec2f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 072c53b..c748d47 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a17d4aa..80c9393 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index b114ceb..aebe8ea 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 022adf4..0ceccd9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 0088e69..83a1898 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 29bc789..19ba64c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 72bd800..1520896 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251212.n.0@sha256:cd14d318494b1e19d9f5521695b9c2e9c02a6a703afdf0d5ecff009c0624bd6a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8cc15074f9f584f6f9986b5ea8e679d7e47ee430 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 22 Dec 2025 00:10:21 +0000 Subject: [PATCH 334/697] chore(deps): update konflux references to 8e92d49 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index de7b2e8..4fd6b43 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c122ad8..97755a6 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index e3f200e..71261e8 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 55dd07d..eec6c2f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 79302cd..db0b0c2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 61a95b5..2736c10 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 9989b8d..d35ddd1 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 255d586..cf51afb 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 789f630..04388e3 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8190cf1..7246b34 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 96cfd1a..4e17c21 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 764d5b2..a430c94 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index b50985b..54cf3bd 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e7fa602..c5a99b9 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 642a1d1..ea0b291 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 66b847c..c2a4c43 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 9cdfc98..980e27a 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index ca165e0..d0a5dd8 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9b57b71..a1825bb 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 4af57f1..07c8f39 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 0ad39ae..f402764 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 95de4e4..c54a47c 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 5d65680..0a7219c 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 08c2161..86a5434 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 2c0dc6b..adeaf15 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 7cc2ad0..5ef7fd8 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 7519cce..873ea9e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c276c08..0be101f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 8aaec2f..59044da 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c748d47..79ffc97 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 80c9393..7928b68 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index aebe8ea..871ecd2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 0ceccd9..99634ae 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 83a1898..1aa28f0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 19ba64c..698e530 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 1520896..c2f9386 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8f5fae793ba663e0654be067bc78055ed146fbcea49cbf85f4b8f8e378684942 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 849a1138817d63bd2beaa63fab3b9beb6bbff6d0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 22 Dec 2025 01:10:22 +0000 Subject: [PATCH 335/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20251219.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 54cf3bd..75ec1d9 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index c5a99b9..270cfd9 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index ea0b291..3d6f1a4 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index c2a4c43..e528eef 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 980e27a..0c1c527 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index d0a5dd8..80318ed 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index a1825bb..d49457f 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 07c8f39..13f87cb 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index f402764..3ec2c31 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index c54a47c..846e7d3 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0a7219c..0d3116d 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 86a5434..0da1bfb 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251212.0@sha256:f16c7e8d67220d3b4925d92e9e75857b34ea9f7660329a0bdf8d5b70763a1b6e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8af37ceef628910cb42b59b7c61263cac21d979d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 22 Dec 2025 08:09:03 +0000 Subject: [PATCH 336/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251222.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index adeaf15..c0a5284 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 5ef7fd8..9c71012 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 873ea9e..dbdbcf2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0be101f..228b682 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 59044da..9440f4d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 79ffc97..03d8929 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 7928b68..1cecfb1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 871ecd2..3f5066c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 99634ae..5e17de0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1aa28f0..59e2be1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 698e530..6cef5b6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index c2f9386..73c9f2b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251219.n.0@sha256:c7754cf4005dba58ca930be92de28e59f37969b2d62c737f6987176d9eb5a648 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7faa41f0b01f9177b5598d9b49534e20ac502817 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 24 Dec 2025 03:08:16 +0000 Subject: [PATCH 337/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251224.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 4fd6b43..368c816 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 97755a6..1df31d0 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 71261e8..0c44783 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index eec6c2f..ced14f4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index db0b0c2..81847b5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 2736c10..c70228b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index d35ddd1..7d03dc1 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index cf51afb..3f407ee 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 04388e3..66dab38 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 7246b34..ecf3e18 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4e17c21..af30007 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index a430c94..2c5bb42 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251212.0@sha256:c0eec668d32ba542d78ce1835ded69ae57e5442688b06ba483541c8a80bfd3e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From dcfa86a40735b10a3103dc67ded2544722f303aa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 26 Dec 2025 02:07:53 +0000 Subject: [PATCH 338/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20251226.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 368c816..174e90e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 1df31d0..0b984b5 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 0c44783..f97674c 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index ced14f4..61f4e16 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 81847b5..61acae7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index c70228b..62e35af 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 7d03dc1..c4e1d33 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 3f407ee..868a285 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 66dab38..1aec1a5 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index ecf3e18..531fad2 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index af30007..64cf054 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2c5bb42..68d8326 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251224.0@sha256:6336724f611a06990cc8ff4aa22dff26940fa340e1947d7d52a7f51ff7c5b492 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From dbe05a33815e8d2e12cd61a2cb0d127466c77384 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 29 Dec 2025 00:10:25 +0000 Subject: [PATCH 339/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20251228.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 75ec1d9..070a8a3 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 270cfd9..dbb368c 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 3d6f1a4..ba572e4 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index e528eef..41cb266 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 0c1c527..86db570 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 80318ed..14a8000 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index d49457f..9a06124 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 13f87cb..9e98ad3 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 3ec2c31..81b64c2 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 846e7d3..f6c18c6 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0d3116d..9223bc8 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 0da1bfb..734749d 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251219.0@sha256:8d9f899f062127ef3cd785925793c8c62a31f86b57c69ab64a75339c548e2748 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 23d1086de6ea19c4cc21f804ade05c8a9b898a61 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 30 Dec 2025 10:08:04 +0000 Subject: [PATCH 340/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20251230.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index c0a5284..9a83ce1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 9c71012..f9982aa 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index dbdbcf2..699d18a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 228b682..f30c96f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 9440f4d..844932e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 03d8929..5caa0de 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1cecfb1..b94262d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3f5066c..b76016e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 5e17de0..e913377 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 59e2be1..bf50aa5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6cef5b6..c88efde 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 73c9f2b..7fd36bd 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251222.n.0@sha256:9b088cebf68400624d0c297784131c7d96c37b5201e3f2271f6a18bd1fcc7252 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 412f69a574dbcdf42dcad32e3bd10e1e7bf1b80c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 2 Jan 2026 02:07:56 +0000 Subject: [PATCH 341/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260102.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 174e90e..41dd502 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0b984b5..aa651f5 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index f97674c..2989814 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 61f4e16..13ef659 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 61acae7..02f165f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 62e35af..8c1c9ab 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c4e1d33..8df2f95 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 868a285..8efe9dd 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 1aec1a5..625a7a7 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 531fad2..6e3d33a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 64cf054..49b3abc 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 68d8326..52074d1 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20251226.0@sha256:63bd68ab8c20516f437b67ee09152f9e0d29442c5376263ac63ab88e7778bbf6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e89461608f9b1004c857b942152ce0bf04ed947a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 5 Jan 2026 00:10:51 +0000 Subject: [PATCH 342/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260102.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 070a8a3..e335df2 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index dbb368c..03ab952 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index ba572e4..bdc30c0 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 41cb266..c76d1cd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 86db570..da95aba 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 14a8000..051759a 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9a06124..3edc259 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 9e98ad3..d080320 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 81b64c2..677f7b3 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index f6c18c6..9f26325 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9223bc8..9a89438 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 734749d..276a3a9 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20251228.0@sha256:a764331353c89d87814712c0f55aff9e4dc41af0a9061bb01636fd23ed332ac8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0d19b09ac18bbe2400a40367045bde517b946059 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 5 Jan 2026 03:08:17 +0000 Subject: [PATCH 343/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260105.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index e335df2..b40f598 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 03ab952..73b239c 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index bdc30c0..0087c50 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index c76d1cd..8c6c9f2 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index da95aba..a2a0722 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 051759a..aa89f5f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 3edc259..e3c5c95 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d080320..3646c3f 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 677f7b3..eb102b7 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 9f26325..0e652e3 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9a89438..bed8890 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 276a3a9..552425d 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260102.0@sha256:3fa34652cd81eabae0b629ef0c11a2e0351d25f5651f1b9846e0e7de658dec9a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 3b44d1cefd192c347bfb02fabf79d5af1344929c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 5 Jan 2026 08:08:12 +0000 Subject: [PATCH 344/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260105.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 9a83ce1..96d7da1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index f9982aa..a4e5edc 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 699d18a..76fcc57 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index f30c96f..c624fe2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 844932e..2d2a72d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 5caa0de..9a0e5c0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index b94262d..1bbeb21 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index b76016e..d649db6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index e913377..f52a169 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index bf50aa5..874d015 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index c88efde..a651444 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7fd36bd..c1b650e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20251230.n.0@sha256:db5fbd1e403917c65fdb301f4eb1b15cebe41ebfb35e504d4c05657520ae5f43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0170d0c40078b74ec2fffbfa80e89c25ba5693eb Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 6 Jan 2026 02:07:36 +0000 Subject: [PATCH 345/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260106.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 41dd502..27d15ff 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index aa651f5..f814fca 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 2989814..4d20468 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 13ef659..66a1f24 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 02f165f..e4ed056 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 8c1c9ab..3609c36 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 8df2f95..180c14a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 8efe9dd..d421dcb 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 625a7a7..1f7c0c8 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 6e3d33a..3707d25 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 49b3abc..17c6f0d 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 52074d1..2bce05a 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260102.0@sha256:34e4872f1be058b057a5c76851a8dc2d7684c92ebc11ca53a8df759d396dcf40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b6e9424c1ee2e28f38de0e39892a68ac02d3a078 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 6 Jan 2026 09:07:56 +0000 Subject: [PATCH 346/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260106.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 96d7da1..2ed4fd4 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index a4e5edc..eb8c8d0 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 76fcc57..54ce32c 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c624fe2..9e17a63 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 2d2a72d..b8718d6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 9a0e5c0..a8f5182 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1bbeb21..64c5c6f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index d649db6..bf2a9ad 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index f52a169..07954dd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 874d015..9de20f6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a651444..5bca561 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index c1b650e..139af10 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260105.n.0@sha256:15d22667533399b397fd2bf43ff31308e0747a226feaa5391467f85c3fb6ccfe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6e2889c3d1bfe7cfb356d7eee48ffe2edbba3680 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 6 Jan 2026 15:08:00 +0000 Subject: [PATCH 347/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose:fedora-42-updates-20260106.0 docker digest to 2f29dfa Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 27d15ff..ff0c422 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index f814fca..0345483 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 4d20468..bfc6fee 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 66a1f24..7857bd6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index e4ed056..5a08e83 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3609c36..fe15139 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 180c14a..ba1cd0c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d421dcb..3ada63b 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 1f7c0c8..24b2985 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 3707d25..640061e 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 17c6f0d..64d87d9 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2bce05a..1b40670 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:28aabfd6f89052e703ba24497a3502b24b93384a3b045b717789b336e45678f3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 86d39ee11006b39335ea8a8565fc113108403e9a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 6 Jan 2026 16:08:05 +0000 Subject: [PATCH 348/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose:fedora-rawhide-20260106.n.0 docker digest to 8198a26 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 2ed4fd4..f92f2b2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index eb8c8d0..a059570 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 54ce32c..93dab37 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 9e17a63..76bec89 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index b8718d6..dae22fb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a8f5182..ad132f2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 64c5c6f..ef5de0d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index bf2a9ad..9b1af20 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 07954dd..bc6a43d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 9de20f6..639f6ec 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 5bca561..34622b6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 139af10..e6614e9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:6dfddaf9b2c83fb02741fb26f60e1ba42401abd4c73b47821f132a6b9e1851da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From acca3f292fc16e042fb3dc8ac7cb34138757d70a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 7 Jan 2026 04:07:30 +0000 Subject: [PATCH 349/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260107.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index ff0c422..5d3c2ae 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 0345483..c1089c9 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index bfc6fee..63e68d5 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 7857bd6..948ca98 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 5a08e83..16476a5 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index fe15139..389f211 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index ba1cd0c..ddc0ab5 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 3ada63b..e392e2d 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 24b2985..26ec83f 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 640061e..1489ed9 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 64d87d9..54087a2 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 1b40670..d039e4d 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260106.0@sha256:2f29dfa9fdfbf7c0cca6ef2651f572d357bde9e2eaad19ebe929ae5b14e9a364 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 834eab22077a2e880d7b00be0e320d84a7cb886a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 7 Jan 2026 09:09:53 +0000 Subject: [PATCH 350/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260107.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index f92f2b2..23baf07 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index a059570..d63951d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 93dab37..c016210 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 76bec89..fc146e1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index dae22fb..2fbc2a8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index ad132f2..9117198 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ef5de0d..38f0cef 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9b1af20..5b17597 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index bc6a43d..8869add 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 639f6ec..9582333 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 34622b6..477c857 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index e6614e9..745855a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260106.n.0@sha256:8198a262ade6c621931b45d18d003b9d572e0f0e3484038970022b7678b8eab0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f6c0d88a408a1d2e3c0e3c12bc3963fe5ac905c4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 8 Jan 2026 04:07:11 +0000 Subject: [PATCH 351/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260108.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 5d3c2ae..78d51a9 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c1089c9..e2c36ab 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 63e68d5..098d7a3 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 948ca98..b71fbbd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 16476a5..ae0040a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 389f211..dcbb0bd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index ddc0ab5..ebcd73c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index e392e2d..8ff5689 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 26ec83f..b1492f0 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 1489ed9..e449960 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 54087a2..75cf23f 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index d039e4d..93a4c0d 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260107.0@sha256:9fe41f8968fc3484dcd6a0837efaf1cb66b57bc5627dc499a86bf785cace6ab5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c622503445bd77719f022c75ab7609bd0f188ef0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 8 Jan 2026 09:07:31 +0000 Subject: [PATCH 352/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260108.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 23baf07..5f38bc1 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index d63951d..3b2d321 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index c016210..aaa0b0d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index fc146e1..7bb1505 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 2fbc2a8..99d9823 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 9117198..b1c5c5c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 38f0cef..be75aec 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5b17597..f565953 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 8869add..ae0fc3e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 9582333..7c7ec6e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 477c857..788b5d2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 745855a..1cb251f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260107.n.0@sha256:295459147d1b9a70091e318cf2287edf23906f1389868f9f0df48f30ccddb399 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ad40e2cfac621366ae12390c02616d5fd1d574a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Thu, 8 Jan 2026 13:20:51 +0100 Subject: [PATCH 353/697] README.md: update links to container images MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miguel Martín --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a4808e..5659663 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,9 @@ one stakeholder of each Fedora variant WGs. | Version | standard | minimal | minimal-plus | | ------- | -------- | ------- | ------------ | -| Rawhide | quay.io/fedora-testing/fedora-bootc:rawhide-standard | quay.io/fedora-testing/fedora-bootc:rawhide-minimal | quay.io/fedora-testing/fedora-bootc:rawhide-minimal-plus | -| Fedora 42 | quay.io/fedora-testing/fedora-bootc:42-standard | quay.io/fedora-testing/fedora-bootc:42-minimal | quay.io/fedora-testing/fedora-bootc:42-minimal-plus | +| Rawhide | quay.io/bootc-devel/fedora-bootc-rawhide-standard | quay.io/bootc-devel/fedora-bootc-rawhide-minimal | quay.io/bootc-devel/fedora-bootc-rawhide-minimal-plus | +| Fedora 43 | quay.io/bootc-devel/fedora-bootc-43-standard | quay.io/bootc-devel/fedora-bootc-43-minimal | quay.io/bootc-devel/fedora-bootc-43-minimal-plus | +| Fedora 42 | quay.io/bootc-devel/fedora-bootc-42-standard | quay.io/bootc-devel/fedora-bootc-42-minimal | quay.io/bootc-devel/fedora-bootc-42-minimal-plus | ## More information From b2b1cb6fec497706deb2739b8d83d94017a8256c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 9 Jan 2026 04:07:30 +0000 Subject: [PATCH 354/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260109.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 78d51a9..c6578cd 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index e2c36ab..84650dc 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 098d7a3..1e1a812 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index b71fbbd..3967247 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index ae0040a..96979c4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index dcbb0bd..c5ebe96 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index ebcd73c..0da9343 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 8ff5689..7082407 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index b1492f0..142c15e 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e449960..4008366 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 75cf23f..814b3c5 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 93a4c0d..bcae374 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260108.0@sha256:c50ac121e926e9a51654ebf50d2454aaca94d49e3a43e1dcf301dd6ba95ca1ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7b1f37175c643e30c455ca70a284695b8aff47e9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 9 Jan 2026 09:07:38 +0000 Subject: [PATCH 355/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260109.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 5f38bc1..afa17c5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 3b2d321..754888a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index aaa0b0d..b669251 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 7bb1505..e6394c8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 99d9823..458e0c7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b1c5c5c..8280af6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index be75aec..631c016 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f565953..c9a5b74 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ae0fc3e..b5838b8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 7c7ec6e..cf38303 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 788b5d2..7e1917a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 1cb251f..a897033 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260108.n.0@sha256:c921070c94ee9bfedc3cfdaed53814aaa138265c0c7c3abfa1a138ed9ad5161a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f4d4b812634ec06057b56b5534f32fa3d5d8727c Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Fri, 9 Jan 2026 15:44:40 +0100 Subject: [PATCH 356/697] chore(deps): update konflux references to latest --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 78d51a9..fca34f3 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index e2c36ab..2b4fe9f 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 098d7a3..0c6eb1b 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index b71fbbd..c5b4629 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index ae0040a..ff1dc82 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index dcbb0bd..7ea8049 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index ebcd73c..1483590 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 8ff5689..d7e1ebc 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index b1492f0..2646129 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e449960..9bd3154 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 75cf23f..04e7474 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 93a4c0d..15ec0e6 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index b40f598..c860ed4 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 73b239c..0778e2e 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 0087c50..68c1b61 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 8c6c9f2..02231e1 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index a2a0722..82f344b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index aa89f5f..8a6a0c5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index e3c5c95..7c4c431 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 3646c3f..6b6bcf9 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index eb102b7..6b93d78 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 0e652e3..23839f4 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index bed8890..773a58b 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 552425d..d8cf7ed 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 5f38bc1..5eafc46 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 3b2d321..506f15a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index aaa0b0d..053fe21 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 7bb1505..2d500fe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 99d9823..4dc0071 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -57,7 +57,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b1c5c5c..a138fe2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index be75aec..8075cd7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f565953..85e9b35 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -55,7 +55,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ae0fc3e..bcc8d47 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 7c7ec6e..8d86f86 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 788b5d2..133e722 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 1cb251f..133d7db 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8e92d49d399856ba57a2263f1ffd13d57f0a10bc6062247d909bb130d050e1ec + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 875dd50c6b0b06ae78c90d03dabea6b7f99b2a37 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 9 Jan 2026 15:08:46 +0000 Subject: [PATCH 357/697] chore(deps): update all dependencies Signed-off-by: Platform Engineering Bot --- .gitlab-ci.yml | 2 +- .pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bbbf56f..f4b2b4d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ variables: .build-image: stage: build - image: quay.io/buildah/stable:v1.41.5 + image: quay.io/buildah/stable:v1.42.2 needs: [] basic-checks: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8b8537c..6383196 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -22,6 +22,6 @@ repos: - id: check-json - id: check-yaml - repo: https://github.com/markdownlint/markdownlint - rev: v0.13.0 + rev: v0.15.0 hooks: - id: markdownlint From 806c96ec0a86e2588a90ca1202002a7c08754d1d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 12 Jan 2026 02:09:10 +0000 Subject: [PATCH 358/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260111.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 5905e17..bfd77ac 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 59a5120..2162827 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 1b7c730..0d2f78b 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 19856df..d1323a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3b0a4f8..988b311 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a22fab6..2a3ec9e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2db7bca..e4e2408 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 88df46f..eeec033 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 98a15cc..fcd4c03 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 97cf504..1336fe6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3d137db..f3b02a1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 69748fc..7506475 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260109.n.0@sha256:bc9372f033dc59bb177e6939acd0aaf164c58f79e977006477914abd6cde284b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 690929c8c2f71d557b27b2a7ffd90bb5da5d0c93 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 12 Jan 2026 05:09:08 +0000 Subject: [PATCH 359/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260112.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 29b20bc..024c3c6 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 05b02ee..3de73ad 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 5224c54..c5863d3 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 8f98abd..a0b2f90 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 8e6f766..fdf6561 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 5cb69f9..afcfe57 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index a52bb46..baf302d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 446f2ac..dff1c33 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 47bdb9b..dc48449 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 856c3a2..606e357 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 3cbac29..a51878a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 5fda263..cc7855f 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260109.0@sha256:bbe0996dfc749ac0b8e871216f0032d907c8da2dee6b8c14c2b85411922e16d2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 69f29d8243c79aede4d64619a3988013f9c9d255 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 12 Jan 2026 08:08:31 +0000 Subject: [PATCH 360/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260112.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index c860ed4..de802a8 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 0778e2e..76e08da 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 68c1b61..9b4f2f8 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 02231e1..847aff6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 82f344b..b2a69de 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 8a6a0c5..74e0f38 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 7c4c431..63b427a 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 6b6bcf9..8c0d861 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 6b93d78..7c2d291 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 23839f4..72c02b1 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 773a58b..cd9cba6 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index d8cf7ed..304fc9e 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260105.0@sha256:b59226379b471231cd5f6b264f487b1491f9a4d85865171ed46a4fb020d1d114 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 20c06ab0686bc7f5233b04280c09c0302ddb3bc4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 12 Jan 2026 12:08:01 +0000 Subject: [PATCH 361/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260112.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index bfd77ac..d4f3571 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 2162827..5e3de48 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 0d2f78b..2060412 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index d1323a1..1373c60 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 988b311..4879870 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 2a3ec9e..dfc8942 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e4e2408..90b1051 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index eeec033..974de36 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index fcd4c03..37d325f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1336fe6..9f4202d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f3b02a1..6c1e666 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7506475..7f11a8f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260111.n.0@sha256:6314bdc99bb43c75453c5a05cc584e59055c47620a231b165d091bb0ef939b1a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 3e1e61277e2669ab8a659af3e75630dfec48f91d Mon Sep 17 00:00:00 2001 From: Joseph Marrero Corchado Date: Sat, 10 Jan 2026 00:29:57 -0500 Subject: [PATCH 362/697] kernel-install: Use drop-in config to preserve layout=ostree When systemd is upgraded via `dnf upgrade`, the systemd-udev package overwrites /usr/lib/kernel/install.conf with its default template, removing the layout=ostree setting. This breaks rpm-ostree's kernel-install integration in bootc container builds, causing: - Initramfs to be generated in /boot/ instead of /lib/modules// - Old kernel directories to not be properly cleaned up - bootc container lint failures Per kernel-install(8), configuration in install.conf.d/ directories is merged with install.conf. By placing the layout=ostree setting in /usr/lib/kernel/install.conf.d/00-kernel-layout.conf, it will not be overwritten when systemd-udev updates install.conf. Closes: RHEL-128312 Assisted-by: OpenCode (Opus 4.5) Signed-off-by: Joseph Marrero Corchado --- minimal/kernel-install.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/minimal/kernel-install.yaml b/minimal/kernel-install.yaml index 1d75cd9..d304f7e 100644 --- a/minimal/kernel-install.yaml +++ b/minimal/kernel-install.yaml @@ -4,10 +4,11 @@ postprocess: #!/usr/bin/env bash set -xeuo pipefail source /usr/lib/os-release + mkdir -p /usr/lib/kernel/install.conf.d echo -e "# kernel-install will not try to run dracut and allow rpm-ostree to\n\ # take over. Rpm-ostree will use this to know that it is responsible\n\ # to run dracut and ensure that there is only one kernel in the image\n\ - layout=ostree" | tee /usr/lib/kernel/install.conf > /dev/null + layout=ostree" | tee /usr/lib/kernel/install.conf.d/00-kernel-layout.conf > /dev/null # By default dnf keeps multiple versions of the kernel, with this # configuration we tell dnf to treat the kernel as everything else. # https://dnf.readthedocs.io/en/latest/conf_ref.html#main-options From 76494aec732beb575a26ac69d0546dc6080144b7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 13 Jan 2026 05:07:53 +0000 Subject: [PATCH 363/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260113.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 024c3c6..748175d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 3de73ad..071eeed 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index c5863d3..ffb7baa 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a0b2f90..ed845af 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index fdf6561..767bf33 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index afcfe57..7e3deaf 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index baf302d..2c5042c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index dff1c33..fa61a76 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index dc48449..3f4e6af 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 606e357..6b37897 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index a51878a..11d0237 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index cc7855f..1ff33b3 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260112.0@sha256:5ebc471952dfc89718edd26b9099345468f98d1e054b2964902a4a06b8c41593 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c188a85beb69f5bb4a0f93934ffd2c0521fc0792 Mon Sep 17 00:00:00 2001 From: Joseph Marrero Corchado Date: Mon, 12 Jan 2026 20:04:33 -0500 Subject: [PATCH 364/697] kernel-install: Write layout=ostree to both install.conf and drop-in Write the layout=ostree configuration to both /usr/lib/kernel/install.conf and /usr/lib/kernel/install.conf.d/00-bootc-kernel-layout.conf for defense-in-depth. The drop-in ensures the setting persists when systemd-udev overwrites install.conf during upgrades, while having both paths maintains compatibility with any tooling that reads the original location. The original install.conf path can be removed after a release cycle of rpm-ostree, once all consumers are updated to use the drop-in and have rpm-ostree changes. Resolves: RHEL-128312 Assisted-by: OpenCode (Opus 4.5) Signed-off-by: Joseph Marrero Corchado --- minimal/kernel-install.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimal/kernel-install.yaml b/minimal/kernel-install.yaml index d304f7e..2df40d6 100644 --- a/minimal/kernel-install.yaml +++ b/minimal/kernel-install.yaml @@ -8,7 +8,7 @@ postprocess: echo -e "# kernel-install will not try to run dracut and allow rpm-ostree to\n\ # take over. Rpm-ostree will use this to know that it is responsible\n\ # to run dracut and ensure that there is only one kernel in the image\n\ - layout=ostree" | tee /usr/lib/kernel/install.conf.d/00-kernel-layout.conf > /dev/null + layout=ostree" | tee /usr/lib/kernel/install.conf /usr/lib/kernel/install.conf.d/00-bootc-kernel-layout.conf > /dev/null # By default dnf keeps multiple versions of the kernel, with this # configuration we tell dnf to treat the kernel as everything else. # https://dnf.readthedocs.io/en/latest/conf_ref.html#main-options From 7252f059ba0db1fa6ecab23265569a39f4387361 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 14 Jan 2026 04:07:02 +0000 Subject: [PATCH 365/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260114.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 748175d..aef7f34 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 071eeed..b4ef215 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ffb7baa..9fa6642 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index ed845af..a534581 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 767bf33..8c4a001 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 7e3deaf..3c08f44 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 2c5042c..571e71a 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index fa61a76..747020e 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 3f4e6af..9126dd3 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 6b37897..6723268 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 11d0237..142f15e 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 1ff33b3..2e505ac 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260113.0@sha256:2dc2a353f8b23deec55f6c71516fc5f0d58cd1135fb6be1c48c9c11ebaeba1a2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 614806f76e304f784edf5f8396caef27d999e635 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 15 Jan 2026 03:07:04 +0000 Subject: [PATCH 366/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260115.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index aef7f34..edec3ff 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b4ef215..555f449 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 9fa6642..ed8cfab 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a534581..a1d1a20 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 8c4a001..d405480 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3c08f44..1c3013c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 571e71a..ab837f2 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 747020e..843833d 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 9126dd3..7fa002b 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 6723268..005be15 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 142f15e..4d23483 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 2e505ac..49863d0 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260114.0@sha256:4f72a1fef6e060b3d91d289827b5e4e41b78193233023e54c0ce6d1a6c6f202f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4d88ca0d01a5d80031df24411f557241d5801fed Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 20 Jan 2026 04:08:57 +0000 Subject: [PATCH 367/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260120.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index edec3ff..c97f28d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 555f449..9844c68 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ed8cfab..c7b26c0 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a1d1a20..0eeb886 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index d405480..3ad75dd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 1c3013c..506d935 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index ab837f2..9f7d1aa 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 843833d..1d071ae 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 7fa002b..d7ba5d8 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 005be15..694750a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4d23483..ff5f12c 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 49863d0..b6470db 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260115.0@sha256:502df36d745e1c564e770f122f042413dfb269e757a6ba09681fa5c21263b28d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 57663e7b80d8de9544959ac0a5a248fa63ce012e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 20 Jan 2026 05:10:14 +0000 Subject: [PATCH 368/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260120.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index de802a8..c77ebc8 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 76e08da..c376a97 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 9b4f2f8..b5e4f1b 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 847aff6..412b03c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index b2a69de..9432dff 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 74e0f38..0ffd037 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 63b427a..d3d4156 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 8c0d861..a09b084 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 7c2d291..e8a47d2 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 72c02b1..5ec518d 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index cd9cba6..5d2134b 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 304fc9e..88c79c3 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260112.0@sha256:3b1e411b102a3fdd1001ab7820ccb0f59beec9ffdd19196df0c365670f708e88 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cf71f15c71105c7ed1faf32b7a9226e964b5308c Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Tue, 20 Jan 2026 14:38:24 +0100 Subject: [PATCH 369/697] chore(config): update config renovate.json --- renovate.json | 55 +++++++++++---------------------------------------- 1 file changed, 12 insertions(+), 43 deletions(-) diff --git a/renovate.json b/renovate.json index 184be10..55c354e 100644 --- a/renovate.json +++ b/renovate.json @@ -55,9 +55,7 @@ } ], "baseBranchPatterns": [ - "main", - "f40", - "f41" + "main" ], "packageRules": [ { @@ -71,6 +69,17 @@ ], "automerge": true }, + { + "matchPackageNames": [ + "/quay.io/bootc-devel/fedora-bootc-43-compose/" + ], + "groupName": "Fedora 43 compose dependencies", + "groupSlug": "fedora-43-compose-dependencies", + "schedule": [ + "at any time" + ], + "automerge": true + }, { "matchPackageNames": [ "/quay.io/bootc-devel/fedora-bootc-42-compose/" @@ -81,46 +90,6 @@ "at any time" ], "automerge": true - }, - { - "matchPackageNames": [ - "/quay.io/bootc-devel/fedora-bootc-41-compose/" - ], - "groupName": "Fedora 41 compose dependencies", - "groupSlug": "fedora-41-compose-dependencies", - "schedule": [ - "at any time" - ], - "automerge": true - }, - { - "matchPackageNames": [ - "/quay.io/bootc-devel/fedora-bootc-40-compose/" - ], - "groupName": "Fedora 40 compose dependencies", - "groupSlug": "fedora-40-compose-dependencies", - "schedule": [ - "at any time" - ], - "automerge": true - }, - { - "matchPackageNames": [ - "quay.io/fedora/fedora" - ], - "allowedVersions": "=40", - "matchBaseBranches": [ - "f40" - ] - }, - { - "matchPackageNames": [ - "quay.io/fedora/fedora" - ], - "allowedVersions": "=41", - "matchBaseBranches": [ - "f41" - ] } ] } From c647a6914f32ae0a825bc12caddaf6615fc5106d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 21 Jan 2026 04:07:52 +0000 Subject: [PATCH 370/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260121.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index c97f28d..fff2d5d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 9844c68..6906da0 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index c7b26c0..618bbde 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 0eeb886..711d6b7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 3ad75dd..861fd49 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 506d935..c67e304 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 9f7d1aa..7fea730 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 1d071ae..816b23a 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index d7ba5d8..c3292bb 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 694750a..08bc75e 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index ff5f12c..d0b7081 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index b6470db..c8bc027 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260120.0@sha256:ddf31c60897c7b4827e2637525d5be19a734c4f259475ff472784a7ec71bfdcb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 032b6c690749c282ebe49be0eb6956a890c33bcd Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 23 Jan 2026 09:09:25 +0000 Subject: [PATCH 371/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260123.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index c77ebc8..fcdf04b 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index c376a97..5f9ada2 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index b5e4f1b..6c54185 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 412b03c..a047561 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 9432dff..d14d615 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 0ffd037..ac3b274 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index d3d4156..b0a8153 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index a09b084..3d14c0e 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index e8a47d2..dc29e95 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 5ec518d..506ed82 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 5d2134b..4a6c1f6 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 88c79c3..49ccab3 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260120.0@sha256:0bb3037f8b6f91744f8a159129960be020f17b6718b1883bac32adabc73feca5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8be31e7521ffb54880c9820cf47c1c16987a624f Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Thu, 22 Jan 2026 17:27:46 -0500 Subject: [PATCH 372/697] minimal: name systemd-pam in manifest lists systemd-pam was downgraded to a recommends in [1]. Let's name it here to make sure it gets included in our images. [1] https://src.fedoraproject.org/rpms/systemd/c/67538c79f250eecbd904aa87e72a44cb3b5ef6f4?branch=rawhide --- minimal/bootc.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/minimal/bootc.yaml b/minimal/bootc.yaml index a2500ce..128afd3 100644 --- a/minimal/bootc.yaml +++ b/minimal/bootc.yaml @@ -1,6 +1,9 @@ # The bootc components. packages: - - systemd + # systemd. Also name systemd-pam because it was dropped to a recommends + # but we still want it for handling user logins/sessions. + - systemd systemd-pam + # bootc itself. - bootc # Required by bootc install, sgdisk has been replaced by Rust crate # in bootc https://github.com/containers/bootc/pull/775 From caa8c1a94e4bcfd6825af4d3ead559b53d618316 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 26 Jan 2026 04:07:57 +0000 Subject: [PATCH 373/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260126.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index fcdf04b..00e452d 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 5f9ada2..03a639a 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 6c54185..76c787a 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index a047561..a78b5e8 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index d14d615..0a229b0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index ac3b274..2819faa 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index b0a8153..262da09 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 3d14c0e..0ef697d 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index dc29e95..6329837 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 506ed82..0d86fef 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 4a6c1f6..627770a 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 49ccab3..98927c6 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260123.0@sha256:f34e051d005a79acb62e5f30b0b9a1674bf897228a061f58b47d5443b07308c0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 45d95b4d297313f7768a9e33fda5d2f92a7a2295 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 26 Jan 2026 09:08:43 +0000 Subject: [PATCH 374/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260126.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d4f3571..c4340a2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 5e3de48..ee6fb95 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 2060412..c746ae3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1373c60..301b196 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 4879870..c32d2e6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index dfc8942..286db7b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 90b1051..2763a02 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 974de36..dc5cbdc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 37d325f..1fc5ee7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 9f4202d..8d5b1fc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6c1e666..4429f8e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7f11a8f..c490af9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260112.n.0@sha256:c8f89e68b408214b649deb42182452f591726ac7b99bdff7a624bb14badddf64 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 73ee4bbc814156b0b7e85d31eb4e76dbe8f08664 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 27 Jan 2026 08:08:11 +0000 Subject: [PATCH 375/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260127.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 00e452d..734f5eb 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 03a639a..5c918a8 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 76c787a..41c628b 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index a78b5e8..2440d58 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 0a229b0..bf34756 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 2819faa..fc9160f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 262da09..7191630 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 0ef697d..56f5397 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 6329837..af8393e 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 0d86fef..5635fc6 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 627770a..94c46a8 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 98927c6..8d08868 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260126.0@sha256:6cb8a536a31fd46579859e6489fdd261bf1fe075de3c47ed04ae77ff3c0f9aaa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From da8f482d80edb59b640358e1b2dc7ecc3eaf0b61 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 28 Jan 2026 04:08:29 +0000 Subject: [PATCH 376/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260128.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 734f5eb..a1b6acc 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 5c918a8..d6d3819 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 41c628b..9732434 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 2440d58..813ba27 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index bf34756..e2afb77 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index fc9160f..1c99ba3 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 7191630..af718b3 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 56f5397..b0bf09e 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index af8393e..dc331f4 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 5635fc6..d97d1aa 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 94c46a8..f085e8f 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 8d08868..380fe1d 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260127.0@sha256:2a9f4c99b4522b8bd2b1f76f54da510b4884e283a74c456c5cc86b45e7429961 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4e8197c1b27fece1555bd1e71a16d20636f33754 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 29 Jan 2026 03:08:01 +0000 Subject: [PATCH 377/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose docker tag to fedora-43-updates-20260129.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index a1b6acc..8345527 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index d6d3819..f4afaff 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 9732434..8eec3f7 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 813ba27..93cbe9f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index e2afb77..7fa4f41 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 1c99ba3..0643b24 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index af718b3..e88d627 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index b0bf09e..a34643c 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index dc331f4..9434d8d 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d97d1aa..1411533 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f085e8f..be496f4 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 380fe1d..7a54d82 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260128.0@sha256:18d4ade10cf005101e95154177f5595f70358d0a52c89510930df08170f92c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d959df1150cea39e153b9002e23b2e8762e9b2a1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 29 Jan 2026 13:09:32 +0000 Subject: [PATCH 378/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-43-compose:fedora-43-updates-20260129.0 docker digest to 16ac651 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 8345527..4e085fd 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index f4afaff..086ce3f 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 8eec3f7..073c633 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 93cbe9f..6ef8da4 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 7fa4f41..d970933 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 0643b24..a5dbfef 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index e88d627..7cb8307 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index a34643c..b5382ae 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 9434d8d..03875ce 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 1411533..1811df7 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index be496f4..10c9fbb 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 7a54d82..24a274e 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:6cca2e955cc95413ee4f0e4c1385de21e753ae009357230ca478e12abcec3bdf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4ea32b1abc698e476a2416c505ff21fa4ed5b68b Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Fri, 30 Jan 2026 12:31:16 +0100 Subject: [PATCH 379/697] fix: disable rawhide renovate pipelines ... temporary for troubleshooting purpose. See [1] for more details. [1] https://github.com/konflux-ci/support/issues/9 --- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index c746ae3..3dc004a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -22,7 +22,7 @@ metadata: "minimal-plus/***".pathChanged() || "iot.yaml".pathChanged() || "iot/***".pathChanged() - ) + ) && true == false creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 286db7b..867bb8a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -20,7 +20,7 @@ metadata: "minimal/***".pathChanged() || "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() - ) + ) && true == false creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 1fc5ee7..ab964d3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -18,7 +18,7 @@ metadata: "fedora-includes/generic.yaml".pathChanged() || "minimal.yaml".pathChanged() || "minimal/***".pathChanged() - ) + ) && true == false creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index c490af9..c066aba 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -22,7 +22,7 @@ metadata: "minimal-plus/***".pathChanged() || "standard.yaml".pathChanged() || "standard/***".pathChanged() - ) + ) && true == false creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide From bd4a9fc5d43bc2dd90a614a271cb4a2ef1a2d80a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 30 Jan 2026 20:07:11 +0000 Subject: [PATCH 380/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260130.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index c4340a2..02ad36e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index ee6fb95..51f2a43 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 3dc004a..3541c28 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 301b196..74f4868 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index c32d2e6..48e2e50 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 867bb8a..f053ab9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2763a02..1bfb219 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index dc5cbdc..e5668d6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ab964d3..086a62e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 8d5b1fc..f9c634e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 4429f8e..3ab5093 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index c066aba..d7f6f5d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260126.n.0@sha256:821c4506243f80e735a4e756adbd2c0422e7e290271e1eaefd8996f96c60d791 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 561a7fe699fad44fb24b603091acebc0e142fc03 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 2 Feb 2026 03:08:45 +0000 Subject: [PATCH 381/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260201.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 02ad36e..7de7248 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 51f2a43..658554e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 3541c28..efcb6e9 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 74f4868..a9d5832 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 48e2e50..4690a79 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index f053ab9..53210fc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1bfb219..dacbec9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e5668d6..ac3a494 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 086a62e..73d1ffe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index f9c634e..7f3c242 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3ab5093..88a0e5c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index d7f6f5d..27d4532 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260130.n.0@sha256:e3c5deec1a82748b2717e5f4ceb920824a5686bf41649636d34ad05ae1eef555 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a2595a79a296943b661b59a6711882b112534e18 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 2 Feb 2026 09:08:58 +0000 Subject: [PATCH 382/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260202.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 7de7248..cc3dad6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 658554e..e692570 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index efcb6e9..b83ed25 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a9d5832..9a962ae 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 4690a79..208513c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 53210fc..e332cda 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index dacbec9..da054e8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index ac3a494..e4d7ac8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 73d1ffe..b477974 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 7f3c242..d845f6e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 88a0e5c..583104c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 27d4532..1a65b6f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260201.n.0@sha256:263c62d63d772faa1c8ccec5caaa78e156d4fd2cb92f30034dcf81af1fbd7637 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c254c5493d36d0065283208aab491113bdc62801 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 3 Feb 2026 09:08:52 +0000 Subject: [PATCH 383/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260203.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index cc3dad6..213cb7a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index e692570..ab34a0d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index b83ed25..a745d85 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 9a962ae..5922806 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 208513c..b24e36d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index e332cda..4b5cae7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index da054e8..d011bf0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e4d7ac8..3f278f9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index b477974..de734c1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d845f6e..ba8f1f7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 583104c..68774aa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 1a65b6f..dad0080 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260202.n.0@sha256:abd7bf2b85288083eca053b3e68bafe7e9fa84b5cb9b61861495c718a62b8373 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b56de3e0b1f4430b51a26be9b97000eae0419bac Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 4 Feb 2026 04:08:53 +0000 Subject: [PATCH 384/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260204.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index fff2d5d..3ea74ef 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 6906da0..1081771 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 618bbde..94717dc 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 711d6b7..872bf3e 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 861fd49..e385908 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index c67e304..8c26e85 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 7fea730..815f88f 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 816b23a..e81db78 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c3292bb..069cff5 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 08bc75e..8808d6f 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index d0b7081..bd7026a 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index c8bc027..222c43e 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260121.0@sha256:5276af9a76136f65614e9ace260ec8d3f2fcbe56c4653482a78f1721bd5316cd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 91a0f02afe8404a2a79f92fdf7744fea24dfac39 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 4 Feb 2026 09:10:35 +0000 Subject: [PATCH 385/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260204.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 213cb7a..d298057 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index ab34a0d..983de85 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index a745d85..81e1322 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 5922806..42b55de 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index b24e36d..c12a659 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 4b5cae7..c934144 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index d011bf0..ca96e23 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3f278f9..84aa039 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index de734c1..9e41612 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ba8f1f7..dcfc5d1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 68774aa..0144108 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index dad0080..2e60172 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260203.n.0@sha256:3c0be459e8ebad1ab1ccaad01ac71a1fb971a263fba00692d8c3c78232e8c0bf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 35666695d184c1c8ec3a2398f68d1bd421e72d27 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 5 Feb 2026 09:08:01 +0000 Subject: [PATCH 386/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260205.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index d298057..778caf2 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 983de85..921004f 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 81e1322..46f0baa 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 42b55de..30c6186 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index c12a659..ffc34df 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c934144..a2730eb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ca96e23..0f0a7a2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 84aa039..c20e423 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 9e41612..a5ca635 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index dcfc5d1..93c3347 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0144108..2b91c3a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 2e60172..d5128fd 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260204.n.0@sha256:0c386a8c47c1717025101a308171c57729c6581d114b33a0bf1baf92c13a5821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2a94d58472d729b31b04dda1bbd4ab7fa95a4136 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 6 Feb 2026 04:07:40 +0000 Subject: [PATCH 387/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-42-compose docker tag to fedora-42-updates-20260206.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3ea74ef..3ed23ba 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 1081771..b924377 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 94717dc..7fe1009 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 872bf3e..dc8424b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index e385908..19b4cd2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 8c26e85..91a173d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 815f88f..65342e0 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index e81db78..40e45a7 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 069cff5..b414e7d 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8808d6f..e1e0952 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index bd7026a..b59a399 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 222c43e..0271e81 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260204.0@sha256:3b95dc1d9d866c71b834519c4aea4746fc6997d8bcdee21420737dd8416a8666 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2217d7f6e19f2f21aa28afe8c60fcae234392a16 Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Fri, 6 Feb 2026 11:41:05 -0500 Subject: [PATCH 388/697] chore: add fedora-44.yaml for branching Signed-off-by: Paul Whalen --- fedora-44.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 fedora-44.yaml diff --git a/fedora-44.yaml b/fedora-44.yaml new file mode 100644 index 0000000..3df73a4 --- /dev/null +++ b/fedora-44.yaml @@ -0,0 +1,6 @@ +# NB: This treefile is used by the legacy pungi path only to build tier-1. It +# will be removed in the future. +releasever: 44 +repos: + - fedora-devel +include: fedora-bootc.yaml From 9d7d75858a8677d390315998cdd389e9c617b6e4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 8 Feb 2026 22:09:17 +0000 Subject: [PATCH 389/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260206.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 778caf2..1cebfdb 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 921004f..7d9f175 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 46f0baa..baead51 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 30c6186..7f722b5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index ffc34df..e74c4ef 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a2730eb..ba19249 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 0f0a7a2..407a7cb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index c20e423..961dbff 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index a5ca635..ce65a4e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 93c3347..ca121bd 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2b91c3a..0f7bfc6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index d5128fd..a7a84b2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260205.n.0@sha256:6b7433a2fba1aec63d1f7f1258cd15921a8f71d3b4f05e9da753dad839fafb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cc286999ad49224341f6c4f8e5d350f39135ab2f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 9 Feb 2026 05:10:10 +0000 Subject: [PATCH 390/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260208.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 1cebfdb..4dedbcc 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 7d9f175..c595e85 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index baead51..ca1fb54 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 7f722b5..712a75b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index e74c4ef..5a07b0b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index ba19249..694dad2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 407a7cb..e7f1857 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 961dbff..f43af60 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ce65a4e..10a8456 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ca121bd..30e3307 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0f7bfc6..21104fa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index a7a84b2..a0248ac 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260206.n.1@sha256:0a7a058965b539452cab9fcb979693af914d2f5ef1612ae0ce0259674c807310 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9bafb5759ca669cdb32c8ad0103deeb3205b446c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 9 Feb 2026 09:09:50 +0000 Subject: [PATCH 391/697] chore(deps): update quay.io/bootc-devel/fedora-bootc-rawhide-compose docker tag to fedora-rawhide-20260209.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 4dedbcc..b02cff5 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index c595e85..24d928a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index ca1fb54..e50bd13 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 712a75b..e3e13f9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5a07b0b..b8136b8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 694dad2..f6bf3a3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e7f1857..ba45aa8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f43af60..4372189 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -45,7 +45,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 10a8456..1419a56 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 30e3307..2b68a0c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 21104fa..2321f4c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index a0248ac..b1399e5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260208.n.0@sha256:e0797c7675b0ffc9069bf01e8b4af57e834e94705e6c21a150540071593e2fb5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4b6eea21bcc8329d56ae2293ed1df4fa331fa90f Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Mon, 9 Feb 2026 19:00:39 +0100 Subject: [PATCH 392/697] .tekton: move rawhide image to F45 --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index b02cff5..3a0938e 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 24d928a..6490775 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -53,7 +53,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index e50bd13..ecf8ee3 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index e3e13f9..60b142a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index b8136b8..86749cb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -53,7 +53,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index f6bf3a3..6cb6534 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ba45aa8..face301 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -54,7 +54,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 4372189..761dc9a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -51,7 +51,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 1419a56..0893bbd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -54,7 +54,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 2b68a0c..d693d96 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -58,7 +58,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2321f4c..23828c6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -55,7 +55,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b1399e5..44207bd 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -58,7 +58,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} - name: labels value: - - org.opencontainers.image.version=44 + - org.opencontainers.image.version=45 pipelineRef: params: - name: bundle From c406836190654834bba64e867980710330e41870 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Mon, 9 Feb 2026 17:53:19 +0100 Subject: [PATCH 393/697] .tekton: Add F44 base images Fedora releng branched Fedora 44 from rawhide last week [1] and quay.io/fedora/fedora:44 [2] is available. The compose image is available as well. [2][3] Therefore, we can start building fedora-bootc-44-compose images. [1] https://fedorapeople.org/groups/schedule/f-44/f-44-key-tasks.html [2] https://quay.io/repository/fedora/fedora?tab=tags&tag=latest [3] https://gitlab.com/fedora/bootc/compose-images/-/merge_requests/187 [4] https://quay.io/repository/bootc-devel/fedora-bootc-44-compose?tab=tags --- .tekton/fedora-bootc-44-iot-pull-request.yaml | 70 ++++++++++++++++++ .tekton/fedora-bootc-44-iot-push.yaml | 67 +++++++++++++++++ .../fedora-bootc-44-iot-renovate-push.yaml | 70 ++++++++++++++++++ ...ra-bootc-44-minimal-plus-pull-request.yaml | 70 ++++++++++++++++++ .../fedora-bootc-44-minimal-plus-push.yaml | 67 +++++++++++++++++ ...a-bootc-44-minimal-plus-renovate-push.yaml | 70 ++++++++++++++++++ .../fedora-bootc-44-minimal-pull-request.yaml | 68 ++++++++++++++++++ .tekton/fedora-bootc-44-minimal-push.yaml | 65 +++++++++++++++++ ...fedora-bootc-44-minimal-renovate-push.yaml | 68 ++++++++++++++++++ ...fedora-bootc-44-standard-pull-request.yaml | 72 +++++++++++++++++++ .tekton/fedora-bootc-44-standard-push.yaml | 69 ++++++++++++++++++ ...edora-bootc-44-standard-renovate-push.yaml | 72 +++++++++++++++++++ 12 files changed, 828 insertions(+) create mode 100644 .tekton/fedora-bootc-44-iot-pull-request.yaml create mode 100644 .tekton/fedora-bootc-44-iot-push.yaml create mode 100644 .tekton/fedora-bootc-44-iot-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml create mode 100644 .tekton/fedora-bootc-44-minimal-plus-push.yaml create mode 100644 .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-44-minimal-pull-request.yaml create mode 100644 .tekton/fedora-bootc-44-minimal-push.yaml create mode 100644 .tekton/fedora-bootc-44-minimal-renovate-push.yaml create mode 100644 .tekton/fedora-bootc-44-standard-pull-request.yaml create mode 100644 .tekton/fedora-bootc-44-standard-push.yaml create mode 100644 .tekton/fedora-bootc-44-standard-renovate-push.yaml diff --git a/.tekton/fedora-bootc-44-iot-pull-request.yaml b/.tekton/fedora-bootc-44-iot-pull-request.yaml new file mode 100644 index 0000000..b8d00bc --- /dev/null +++ b/.tekton/fedora-bootc-44-iot-pull-request.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-iot-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-iot-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-iot:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-iot-push.yaml b/.tekton/fedora-bootc-44-iot-push.yaml new file mode 100644 index 0000000..ce6a660 --- /dev/null +++ b/.tekton/fedora-bootc-44-iot-push.yaml @@ -0,0 +1,67 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-iot-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-iot-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-iot + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-iot:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-iot-renovate-push.yaml b/.tekton/fedora-bootc-44-iot-renovate-push.yaml new file mode 100644 index 0000000..40fb253 --- /dev/null +++ b/.tekton/fedora-bootc-44-iot-renovate-push.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-44-iot-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-iot + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-44-iot-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-iot:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml new file mode 100644 index 0000000..25cf9a4 --- /dev/null +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-minimal-plus-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-minimal-plus-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml new file mode 100644 index 0000000..4f22e03 --- /dev/null +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -0,0 +1,67 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-minimal-plus-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-minimal-plus-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-minimal-plus + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml new file mode 100644 index 0000000..3c4f0b5 --- /dev/null +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-minimal-plus + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-44-minimal-plus-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml new file mode 100644 index 0000000..95dd948 --- /dev/null +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -0,0 +1,68 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-minimal-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-minimal-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml new file mode 100644 index 0000000..8d62394 --- /dev/null +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -0,0 +1,65 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-minimal-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-minimal-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-minimal + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml new file mode 100644 index 0000000..7305e53 --- /dev/null +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -0,0 +1,68 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-44-minimal-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-minimal + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-44-minimal-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml new file mode 100644 index 0000000..8ca6bf6 --- /dev/null +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -0,0 +1,72 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-standard-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-standard-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml new file mode 100644 index 0000000..156bf75 --- /dev/null +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -0,0 +1,69 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-44-standard-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-44-standard-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-standard + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml new file mode 100644 index 0000000..54bb5c6 --- /dev/null +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -0,0 +1,72 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-44-standard-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-44 + appstudio.openshift.io/component: fedora-bootc-44-standard + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-44-standard-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=44 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h From 960dd592a956e361a3d274f149460effa574c7c9 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Tue, 10 Feb 2026 12:13:42 +0100 Subject: [PATCH 394/697] .tekton: use specific ServiceAccount Konflux is creating specific SAs for each component. Currently, we are using the legacy `appstudio-pipeline` SA, which requires a manual operation after adding new components i.e: adding the associated component secrets to it. Let's use the specific SAs which are configured automatically by the Konflux operators. --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-iot-push.yaml | 2 ++ .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-42-standard-push.yaml | 2 ++ .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-43-iot-push.yaml | 2 ++ .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-43-standard-push.yaml | 2 ++ .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-44-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-44-iot-push.yaml | 2 ++ .tekton/fedora-bootc-44-iot-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-44-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-44-standard-push.yaml | 2 ++ .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 ++ .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 ++ 48 files changed, 96 insertions(+) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3ed23ba..9a35ee5 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-iot diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b924377..df272c4 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-iot diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 7fe1009..946710b 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-iot diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index dc8424b..f9e531f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 19b4cd2..14222bf 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 91a173d..75185c1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 65342e0..8c35e50 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 40e45a7..686de51 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -63,3 +63,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index b414e7d..e6ffb50 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e1e0952..073dd56 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-standard diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index b59a399..892eda9 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -67,3 +67,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-standard diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 0271e81..97ade13 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-42-standard diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 4e085fd..67085cf 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-iot diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 086ce3f..44e20b8 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-iot diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 073c633..356c5ce 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-iot diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 6ef8da4..85afd3a 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index d970933..31ff447 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index a5dbfef..564e417 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 7cb8307..c61a8ad 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index b5382ae..fdc35ae 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -63,3 +63,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 03875ce..b37bbeb 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-minimal diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 1811df7..0a2b2da 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-standard diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 10c9fbb..d7a1599 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -67,3 +67,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-standard diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 24a274e..f67df1c 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-43-standard diff --git a/.tekton/fedora-bootc-44-iot-pull-request.yaml b/.tekton/fedora-bootc-44-iot-pull-request.yaml index b8d00bc..8ff58f4 100644 --- a/.tekton/fedora-bootc-44-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-44-iot-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-iot diff --git a/.tekton/fedora-bootc-44-iot-push.yaml b/.tekton/fedora-bootc-44-iot-push.yaml index ce6a660..370dd5c 100644 --- a/.tekton/fedora-bootc-44-iot-push.yaml +++ b/.tekton/fedora-bootc-44-iot-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-iot diff --git a/.tekton/fedora-bootc-44-iot-renovate-push.yaml b/.tekton/fedora-bootc-44-iot-renovate-push.yaml index 40fb253..ca1193a 100644 --- a/.tekton/fedora-bootc-44-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-iot-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-iot diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 25cf9a4..4bcdc51 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-minimal diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 4f22e03..d9e999b 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-minimal diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 3c4f0b5..f860060 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-minimal diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 95dd948..eb42388 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-minimal diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 8d62394..882bda6 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -63,3 +63,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-minimal diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 7305e53..9eb6192 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-minimal diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 8ca6bf6..91aea10 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-standard diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 156bf75..ac8e346 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -67,3 +67,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-standard diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 54bb5c6..1c61ac8 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-44-standard diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 3a0938e..c58fe0a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-iot diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 6490775..9ca5a8d 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-iot diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index ecf8ee3..33856ac 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-iot diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 60b142a..3d3ea03 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 86749cb..1e56ae5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -65,3 +65,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 6cb6534..0fcea6b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -68,3 +68,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index face301..04f8874 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 761dc9a..ec627ee 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -63,3 +63,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 0893bbd..38d46e1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -66,3 +66,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d693d96..88cdfc5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-standard diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 23828c6..ec9d057 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -67,3 +67,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-standard diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 44207bd..acd941c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -70,3 +70,5 @@ spec: resolver: bundles timeouts: pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-rawhide-standard From 51cd763b78f7a61fff6012994d9e80c2973c8f42 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Tue, 10 Feb 2026 12:23:46 +0100 Subject: [PATCH 395/697] .tekton: disable comments on MR This fixes [1]. Repository-level config is restricted. Applying component-level changes to disable Konflux MR reporting and reduce spam. [1] https://github.com/konflux-ci/support/issues/10 --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 1 + .tekton/fedora-bootc-42-iot-push.yaml | 1 + .tekton/fedora-bootc-42-iot-renovate-push.yaml | 1 + .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 1 + .tekton/fedora-bootc-42-minimal-plus-push.yaml | 1 + .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 1 + .tekton/fedora-bootc-42-minimal-pull-request.yaml | 1 + .tekton/fedora-bootc-42-minimal-push.yaml | 1 + .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 1 + .tekton/fedora-bootc-42-standard-pull-request.yaml | 1 + .tekton/fedora-bootc-42-standard-push.yaml | 1 + .tekton/fedora-bootc-42-standard-renovate-push.yaml | 1 + .tekton/fedora-bootc-43-iot-pull-request.yaml | 1 + .tekton/fedora-bootc-43-iot-push.yaml | 1 + .tekton/fedora-bootc-43-iot-renovate-push.yaml | 1 + .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 1 + .tekton/fedora-bootc-43-minimal-plus-push.yaml | 1 + .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 1 + .tekton/fedora-bootc-43-minimal-pull-request.yaml | 1 + .tekton/fedora-bootc-43-minimal-push.yaml | 1 + .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 1 + .tekton/fedora-bootc-43-standard-pull-request.yaml | 1 + .tekton/fedora-bootc-43-standard-push.yaml | 1 + .tekton/fedora-bootc-43-standard-renovate-push.yaml | 1 + .tekton/fedora-bootc-44-iot-pull-request.yaml | 1 + .tekton/fedora-bootc-44-iot-push.yaml | 1 + .tekton/fedora-bootc-44-iot-renovate-push.yaml | 1 + .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 1 + .tekton/fedora-bootc-44-minimal-plus-push.yaml | 1 + .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 1 + .tekton/fedora-bootc-44-minimal-pull-request.yaml | 1 + .tekton/fedora-bootc-44-minimal-push.yaml | 1 + .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 1 + .tekton/fedora-bootc-44-standard-pull-request.yaml | 1 + .tekton/fedora-bootc-44-standard-push.yaml | 1 + .tekton/fedora-bootc-44-standard-renovate-push.yaml | 1 + .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 1 + .tekton/fedora-bootc-rawhide-iot-push.yaml | 1 + .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-push.yaml | 1 + .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 1 + .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 1 + .tekton/fedora-bootc-rawhide-standard-push.yaml | 1 + .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 1 + 48 files changed, 48 insertions(+) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 9a35ee5..ac7f127 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index df272c4..c5bbf36 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 946710b..6fe8d02 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index f9e531f..af3254d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -22,6 +22,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 14222bf..b35224c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 75185c1..b6dd7c4 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 8c35e50..6ebd83e 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -20,6 +20,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 686de51..d62181c 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index e6ffb50..8ae3b08 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 073dd56..8e93da8 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 892eda9..c94222e 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 97ade13..5731258 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-42 diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 67085cf..7afc2f7 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 44e20b8..d6d91c2 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 356c5ce..c05d22b 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 85afd3a..40184f6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -22,6 +22,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 31ff447..71f9cf6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 564e417..697e118 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index c61a8ad..614e89e 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -20,6 +20,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index fdc35ae..24c6bcc 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index b37bbeb..7e8eee4 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 0a2b2da..6755a35 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index d7a1599..4f15e8e 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index f67df1c..190882f 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-43 diff --git a/.tekton/fedora-bootc-44-iot-pull-request.yaml b/.tekton/fedora-bootc-44-iot-pull-request.yaml index 8ff58f4..a6082cd 100644 --- a/.tekton/fedora-bootc-44-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-44-iot-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-iot-push.yaml b/.tekton/fedora-bootc-44-iot-push.yaml index 370dd5c..4ffaa5c 100644 --- a/.tekton/fedora-bootc-44-iot-push.yaml +++ b/.tekton/fedora-bootc-44-iot-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-iot-renovate-push.yaml b/.tekton/fedora-bootc-44-iot-renovate-push.yaml index ca1193a..04ba72f 100644 --- a/.tekton/fedora-bootc-44-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-iot-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 4bcdc51..447120c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -22,6 +22,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d9e999b..d01ece8 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index f860060..ca3f045 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index eb42388..396f8a0 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -20,6 +20,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 882bda6..469705a 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 9eb6192..ebbdcf8 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 91aea10..bd65cd0 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index ac8e346..83075d9 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 1c61ac8..bc74645 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-44 diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index c58fe0a..bacad44 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 9ca5a8d..85bfe82 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index 33856ac..b3a2ba6 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "iot.yaml".pathChanged() || "iot/***".pathChanged() ) && true == false + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 3d3ea03..df7d35f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -22,6 +22,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 1e56ae5..0736ad4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0fcea6b..05d85ca 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -21,6 +21,7 @@ metadata: "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() ) && true == false + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 04f8874..a902499 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -20,6 +20,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index ec627ee..5929004 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 38d46e1..0e322b3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -19,6 +19,7 @@ metadata: "minimal.yaml".pathChanged() || "minimal/***".pathChanged() ) && true == false + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 88cdfc5..d628c53 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -24,6 +24,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index ec9d057..72df74c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index acd941c..b431762 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -23,6 +23,7 @@ metadata: "standard.yaml".pathChanged() || "standard/***".pathChanged() ) && true == false + test.appstudio.openshift.io/comment_strategy: "disable_all" creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-rawhide From 06462024df2e23d9b849fc895b5e49dee0df9758 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Thu, 12 Feb 2026 15:51:34 +0100 Subject: [PATCH 396/697] ci: skip pipeline when only non-build files change Add workflow rules to skip GitLab CI when commits only modify files that don't affect the build or tests: - renovate.json (Renovate bot config) - README.md (documentation) - LICENSE (license file) - .tekton/* (Konflux pipelines, tested separately) This avoids wasting CI resources on changes that don't need validation. --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f4b2b4d..2175264 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,15 @@ --- +workflow: + rules: + # Skip CI if only non-build files changed + - changes: + - renovate.json + - README.md + - LICENSE + - .tekton/* + when: never + - when: always + stages: - build From 3bd7c7387a4880d774af006b588775f5fd9e32c3 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Thu, 12 Feb 2026 15:28:46 +0100 Subject: [PATCH 397/697] renovate: separate PRs per Fedora release and update type Refactor Renovate config to create independent PRs for each Fedora release (42, 43, 44, Rawhide) and update type (bootc-pipeline, REPOS_IMAGE). This prevents blocking all releases when tests fail on one. Key changes: - Add per-release branch prefixes (renovate/fedora-42/, etc.) - Schedule bootc-pipeline updates for 2-5 AM UTC daily - Set rebaseWhen to 'never' for REPOS_IMAGE to avoid pipeline resets - Enable automerge for all PRs - Add comprehensive documentation - Switch back to the creation of PRs to avoid a misbehavior with our current configuration c.f: [1] [1] https://github.com/konflux-ci/support/issues/9 --- renovate.json | 196 ++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 142 insertions(+), 54 deletions(-) diff --git a/renovate.json b/renovate.json index 55c354e..8db14b9 100644 --- a/renovate.json +++ b/renovate.json @@ -1,10 +1,39 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "description": [ + "Renovate configuration for bootc-base-image repository.", + "", + "This configuration separates updates into different PRs per release (e.g., Fedora 44, Rawhide)", + "to prevent blocking all releases if tests fail on one.", + "", + "Update schedules:", + "- Fedora 42 bootc-pipeline: 2-5 AM UTC daily", + "- Fedora 42 REPOS_IMAGE: at any time", + "- Fedora 43 bootc-pipeline: 2-5 AM UTC daily", + "- Fedora 43 REPOS_IMAGE: at any time", + "- Fedora 44 bootc-pipeline: 2-5 AM UTC daily", + "- Fedora 44 REPOS_IMAGE: at any time", + "- Rawhide bootc-pipeline: 2-5 AM UTC daily", + "- Rawhide REPOS_IMAGE: at any time", + "", + "Each update type (bootc-pipeline, REPOS_IMAGE) also has its own PR", + "for independent review and merge.", + "", + "rebaseWhen is set to 'never' for REPOS_IMAGE PRs because as different PRs", + "for each release are merged to main, automatic rebasing would reset pipelines", + "and cause tests to rerun multiple times. The operator can manually rebase if needed.", + "", + "Automerge is enabled for all PRs - they will be merged automatically when all checks pass." + ], "extends": [ "github>platform-engineering-org/.github" ], "dependencyDashboard": true, - "automergeType": "branch", + "automergeType": "pr", + "enabledManagers": [ + "custom.regex", + "tekton" + ], "tekton": { "additionalBranchPrefix": "", "includePaths": [ @@ -12,83 +41,142 @@ ], "managerFilePatterns": [ "/\\.ya?ml$/" - ], - "packageRules": [ - { - "matchPackageNames": [ - "/^quay.io/bootc-devel/tekton-catalog//" - ], - "enabled": true, - "groupName": "Konflux references", - "branchPrefix": "renovate/konflux/references/", - "group": { - "branchTopic": "{{{baseBranch}}}", - "commitMessageTopic": "{{{groupName}}}" - }, - "commitMessageTopic": "Konflux references", - "prBodyColumns": [ - "Package", - "Change", - "Notes" - ], - "prBodyTemplate": "{{{header}}}{{{table}}}{{{notes}}}{{{changelogs}}}{{{configDescription}}}{{{controls}}}{{{footer}}}", - "recreateWhen": "always", - "rebaseWhen": "behind-base-branch" - } ] }, + "baseBranchPatterns": [ + "main" + ], "customManagers": [ { "customType": "regex", "description": [ - "Update 'REPOS_IMAGE' and 'BUILDER_IMAGE' in tekton files" + "Update 'REPOS_IMAGE' in tekton files" ], "managerFilePatterns": [ "/.tekton/.*\\.ya?ml$/" ], "matchStrings": [ - "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n", - "BUILDER_IMAGE=(?.*):(?.*)@(?.*)\\n" + "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n" ], "versioningTemplate": "regex:(?.*)-(?\\d{8})(\\.n)?\\.(?\\d)", "datasourceTemplate": "docker" } ], - "baseBranchPatterns": [ - "main" - ], "packageRules": [ { - "matchPackageNames": [ - "/quay.io/bootc-devel/fedora-bootc-rawhide-compose/" - ], - "groupName": "Fedora rawhide compose dependencies", - "groupSlug": "fedora-rawhide-compose-dependencies", - "schedule": [ - "at any time" - ], + "matchManagers": ["tekton"], + "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], + "matchFileNames": [".tekton/fedora-bootc-42-*"], + "groupName": "Fedora 42 bootc-pipeline", + "groupSlug": "fedora-42-bootc-pipeline", + "branchPrefix": "renovate/fedora-42/", + "commitMessageTopic": "Fedora 42 bootc build pipeline", + "schedule": ["after 2am and before 5am"], + "timezone": "UTC", + "recreateWhen": "always", + "rebaseWhen": "always", + "additionalBranchPrefix": "", "automerge": true }, { - "matchPackageNames": [ - "/quay.io/bootc-devel/fedora-bootc-43-compose/" - ], - "groupName": "Fedora 43 compose dependencies", - "groupSlug": "fedora-43-compose-dependencies", - "schedule": [ - "at any time" - ], + "matchManagers": ["custom.regex"], + "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-42-compose/"], + "matchFileNames": [".tekton/fedora-bootc-42-*"], + "groupName": "Fedora 42 REPOS_IMAGE", + "groupSlug": "fedora-42-repos-image", + "branchPrefix": "renovate/fedora-42/", + "commitMessageTopic": "Fedora 42 REPOS_IMAGE", + "schedule": ["at any time"], + "recreateWhen": "always", + "rebaseWhen": "never", + "additionalBranchPrefix": "", "automerge": true }, { - "matchPackageNames": [ - "/quay.io/bootc-devel/fedora-bootc-42-compose/" - ], - "groupName": "Fedora 42 compose dependencies", - "groupSlug": "fedora-42-compose-dependencies", - "schedule": [ - "at any time" - ], + "matchManagers": ["tekton"], + "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], + "matchFileNames": [".tekton/fedora-bootc-43-*"], + "groupName": "Fedora 43 bootc-pipeline", + "groupSlug": "fedora-43-bootc-pipeline", + "branchPrefix": "renovate/fedora-43/", + "commitMessageTopic": "Fedora 43 bootc build pipeline", + "schedule": ["after 2am and before 5am"], + "timezone": "UTC", + "recreateWhen": "always", + "rebaseWhen": "always", + "additionalBranchPrefix": "", + "automerge": true + }, + { + "matchManagers": ["custom.regex"], + "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-43-compose/"], + "matchFileNames": [".tekton/fedora-bootc-43-*"], + "groupName": "Fedora 43 REPOS_IMAGE", + "groupSlug": "fedora-43-repos-image", + "branchPrefix": "renovate/fedora-43/", + "commitMessageTopic": "Fedora 43 REPOS_IMAGE", + "schedule": ["at any time"], + "recreateWhen": "always", + "rebaseWhen": "never", + "additionalBranchPrefix": "", + "automerge": true + }, + { + "matchManagers": ["tekton"], + "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], + "matchFileNames": [".tekton/fedora-bootc-44-*"], + "groupName": "Fedora 44 bootc-pipeline", + "groupSlug": "fedora-44-bootc-pipeline", + "branchPrefix": "renovate/fedora-44/", + "commitMessageTopic": "Fedora 44 bootc build pipeline", + "schedule": ["after 2am and before 5am"], + "timezone": "UTC", + "recreateWhen": "always", + "rebaseWhen": "always", + "additionalBranchPrefix": "", + "automerge": true + }, + { + "matchManagers": ["custom.regex"], + "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-44-compose/"], + "matchFileNames": [".tekton/fedora-bootc-44-*"], + "groupName": "Fedora 44 REPOS_IMAGE", + "groupSlug": "fedora-44-repos-image", + "branchPrefix": "renovate/fedora-44/", + "commitMessageTopic": "Fedora 44 REPOS_IMAGE", + "schedule": ["at any time"], + "recreateWhen": "always", + "rebaseWhen": "never", + "additionalBranchPrefix": "", + "automerge": true + }, + { + "matchManagers": ["tekton"], + "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], + "matchFileNames": [".tekton/fedora-bootc-rawhide-*"], + "groupName": "Fedora Rawhide bootc-pipeline", + "groupSlug": "fedora-rawhide-bootc-pipeline", + "branchPrefix": "renovate/fedora-rawhide/", + "commitMessageTopic": "Fedora Rawhide bootc build pipeline", + "schedule": ["after 2am and before 5am"], + "timezone": "UTC", + "recreateWhen": "always", + "rebaseWhen": "always", + "additionalBranchPrefix": "", + "automerge": true + }, + { + "matchManagers": ["custom.regex"], + "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-rawhide-compose/"], + "matchFileNames": [".tekton/fedora-bootc-rawhide-*"], + "groupName": "Fedora Rawhide REPOS_IMAGE", + "groupSlug": "fedora-rawhide-repos-image", + "branchPrefix": "renovate/fedora-rawhide/", + "commitMessageTopic": "Fedora Rawhide REPOS_IMAGE", + "schedule": ["at any time"], + "recreateWhen": "always", + "rebaseWhen": "never", + "additionalBranchPrefix": "", "automerge": true } ] From 556c5cc4dbcd1ed307d1155e08b9af623f45030b Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Tue, 17 Feb 2026 10:12:45 +0100 Subject: [PATCH 398/697] docs: add RELEASE.md documenting container publishing flows Document the two parallel mechanisms for publishing fedora-base-bootc images: - Production flow via Pungi-IoT and cloud-image-uploader to quay.io/fedora/ - Development flow via Konflux to quay.io/bootc-devel/ Includes repository references, configuration file locations, and common change procedures for both flows. Assisted-By: OpenCode (Opus 4.5) --- RELEASE.md | 238 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 238 insertions(+) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..f32276f --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,238 @@ +# Fedora Base Bootc Container Publishing + +## Overview + +The `fedora-base-bootc` image is published via **two parallel mechanisms**: + +1. **Pungi-IoT + cloud-image-uploader** → `quay.io/fedora/fedora-bootc` (Production) +2. **Konflux** → `quay.io/bootc-devel/fedora-bootc-*` (Development) + +The goal is to move to Konflux and deprecate the Pungi-IoT mechanism. + +--- + +## Part 1: Production Flow (Pungi-IoT) + +### Repositories + +| Repository | URL | Purpose | +|------------|-----|---------| +| base-images | https://pagure.io/fedora-iot/base-images | Image definition (treefiles, packages) | +| pungi-iot | https://pagure.io/fedora-iot/pungi-iot | Compose configuration | +| cloud-image-uploader | https://pagure.io/cloud-image-uploader | Uploads images to registries | +| ansible | https://pagure.io/fedora-infra/ansible | Infrastructure deployment | + +### Compose Cadence + +| Compose | Schedule | Host | +|---------|----------|------| +| IoT Rawhide | **Nightly** | compose-iot01.rdu3.fedoraproject.org | + +### Flow + +``` +┌──────────────────────────────────────────────────────────────────┐ +│ 1. IoT COMPOSE (compose-iot01.rdu3.fedoraproject.org) │ +│ Trigger: Daily cron │ +│ Script: pungi-iot/nightly.sh │ +│ Config: pungi-iot/fedora-iot.conf │ +│ Treefile: base-images/fedora-rawhide.yaml │ +│ │ +│ Output: /mnt/koji/compose/iot//compose/ │ +│ └── /images/Fedora-base-bootc-.ociarchive │ +└──────────────────────────────────────────────────────────────────┘ + │ + ▼ (fedora-messaging) +┌──────────────────────────────────────────────────────────────────┐ +│ 2. CLOUD-IMAGE-UPLOADER (OpenShift) │ +│ │ +│ Listens: org.fedoraproject.prod.pungi.compose.status.change │ +│ Maps: subvariant "base" → repository "fedora-bootc" │ +│ Pushes via skopeo to configured registries │ +└──────────────────────────────────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────┐ +│ 3. CONTAINER REGISTRIES │ +│ │ +│ - quay.io/fedora/fedora-bootc │ +│ - registry.fedoraproject.org/fedora-bootc │ +└──────────────────────────────────────────────────────────────────┘ +``` + +### Key Configuration Files + +#### 1. Compose: Image Build Definition + +**File:** `pungi-iot/fedora-iot.conf` (lines 276-300) + +```python +ostree_container = { + "^IoT$": [ + { + "config_url": "https://pagure.io/fedora-iot/base-images", + "config_branch": "main", + "treefile": "fedora-rawhide.yaml", + "arches": ["x86_64", "aarch64", "ppc64le", "s390x"], + "subvariant": "base", # <-- Used for mapping + "name": "Fedora-base-bootc", + }, + ] +} +``` + +#### 2. Uploader: Subvariant to Repository Mapping + +**File:** `ansible/roles/openshift-apps/cloud-image-uploader/templates/config.toml` + +```toml +[consumer_config.container.repos] +base = "fedora-bootc" # subvariant "base" → repo "fedora-bootc" +IoT = "fedora-iot" +``` + +#### 3. Uploader: Target Registries + +**File:** `ansible/roles/openshift-apps/cloud-image-uploader/templates/config.toml` + +```toml +[[consumer_config.container.registries]] +url = "registry.fedoraproject.org" + +[[consumer_config.container.registries]] +url = "quay.io/fedora" +``` + +### Tags Applied + +| Compose Type | Tags | +|--------------|------| +| Rawhide | ``, `rawhide` | +| Current Stable | ``, `latest` | +| Branched | `` | + +### Common Changes (Production) + +| Task | Where to Change | +|------|-----------------| +| Add/remove packages from image | `base-images/` repo (manifest YAML files) | +| Change architectures | `pungi-iot/fedora-iot.conf` → `ostree_container.arches` | +| Add new registry | `ansible/.../cloud-image-uploader/templates/config.toml` → `registries` | +| Change repository name | `ansible/.../cloud-image-uploader/templates/config.toml` → `repos` mapping | +| Change tagging logic | `cloud-image-uploader/.../handler.py` | + +--- + +## Part 2: Development Flow (Konflux) + +### Repositories + +| Repository | URL | Purpose | +|------------|-----|---------| +| base-images | https://gitlab.com/fedora/bootc/base-images | Image definitions + Tekton build pipelines | +| tekton-catalog | https://gitlab.com/fedora/bootc/tekton-catalog | Release pipeline definitions | +| tenants-config | https://gitlab.com/fedora/infrastructure/konflux/tenants-config | Konflux tenant configuration | + +### Flow + +``` +┌──────────────────────────────────────────────────────────────────────┐ +│ 1. BUILD (triggered by git push or Renovate) │ +│ │ +│ Source: gitlab.com/fedora/bootc/base-images │ +│ Pipeline: .tekton/fedora-bootc-*-push.yaml │ +│ │ +│ Output: quay.io/konflux-fedora/bootc-tenant/ │ +│ fedora-bootc-rawhide-standard:{{revision}} │ +└──────────────────────────────────────────────────────────────────────┘ + │ + ▼ (Konflux creates Snapshot) +┌──────────────────────────────────────────────────────────────────────┐ +│ 2. RELEASE (auto-triggered by ReleasePlan) │ +│ │ +│ ReleasePlan: release-fedora-bootc-to-quay-io │ +│ Pipeline: push-to-external-registry │ +│ │ +│ Steps: │ +│ - verify-access-to-resources │ +│ - apply-mapping (source → destination repos) │ +│ - verify-conforma (Enterprise Contract policy check) │ +│ - push-snapshot (skopeo copy to target registry) │ +│ - make-repo-public │ +└──────────────────────────────────────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────────┐ +│ 3. OUTPUT │ +│ │ +│ quay.io/bootc-devel/fedora-bootc-rawhide-standard │ +│ quay.io/bootc-devel/fedora-bootc-rawhide-minimal │ +│ quay.io/bootc-devel/fedora-bootc-rawhide-minimal-plus │ +│ quay.io/bootc-devel/fedora-bootc-rawhide-iot │ +│ quay.io/bootc-devel/fedora-bootc-rawhide-compose │ +└──────────────────────────────────────────────────────────────────────┘ +``` + +### Image Tiers + +| Tier | Description | Inherits From | +|------|-------------|---------------| +| `minimal` | Minimal bootable base | - | +| `minimal-plus` | Shared base for Fedora image-based variants | minimal | +| `standard` | Full generic base image | minimal-plus | +| `iot` | IoT-specific variant | minimal-plus | + +### Renovate Automation + +| Dependency | Schedule | Purpose | +|------------|----------|---------| +| `REPOS_IMAGE` | At any time | Updates compose image reference | +| `bootc-pipeline` | 2-5 AM UTC daily | Updates Tekton pipeline | + +Both are auto-merged when tests pass. + +### Key Configuration Files + +#### 1. Build Pipeline + +**File:** `base-images/.tekton/fedora-bootc-rawhide-standard-push.yaml` + +```yaml +params: + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:... + - MANIFEST=fedora-standard + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} +``` + +#### 2. ReleasePlan (promotion mapping) + +**File:** `tenants-config/cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/rawhide/releaseplans/release-to-quay-io/kustomization.yaml` + +```yaml +- op: replace + path: /spec/data/mapping/components + value: + - name: fedora-bootc-rawhide-standard + repository: quay.io/bootc-devel/fedora-bootc-rawhide-standard + - name: fedora-bootc-rawhide-minimal + repository: quay.io/bootc-devel/fedora-bootc-rawhide-minimal + # ... +``` + +#### 3. Release Pipeline + +**File:** `tekton-catalog/pipelines/push-to-external-registry/push-to-external-registry.yaml` + +### Common Changes (Development) + +| Task | Where to Change | +|------|-----------------| +| Add new component | `tenants-config/.../components/` | +| Change destination registry | `tenants-config/.../releaseplans/release-to-quay-io/` | +| Modify release pipeline | `tekton-catalog/pipelines/push-to-external-registry/` | +| Add new Fedora version | Create new version directory under `tenants-config/.../fedora-bootc/` | + +--- From 430b9b42c49b68393e2c5c56a98368e13dd30f4e Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Tue, 17 Feb 2026 10:19:58 +0100 Subject: [PATCH 399/697] docs: add Fedora version lifecycle management to RELEASE.md Document the process for adding new Fedora versions and removing EOL versions from Konflux. Includes step-by-step instructions for: - Creating Tekton pipelines for new versions - Updating Renovate configuration - Managing tenant configuration in tenants-config repo - Cleaning up EOL versions Uses F42 EOL and F45 branching as example scenarios. Assisted-By: OpenCode (Opus 4.5) --- RELEASE.md | 172 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 171 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index f32276f..00a1de7 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -233,6 +233,176 @@ params: | Add new component | `tenants-config/.../components/` | | Change destination registry | `tenants-config/.../releaseplans/release-to-quay-io/` | | Modify release pipeline | `tekton-catalog/pipelines/push-to-external-registry/` | -| Add new Fedora version | Create new version directory under `tenants-config/.../fedora-bootc/` | +| Add new Fedora version | See [Adding a New Fedora Version](#adding-a-new-fedora-version-to-konflux) | +| Remove EOL Fedora version | See [Removing an EOL Fedora Version](#removing-an-eol-fedora-version-from-konflux) | --- + +## Part 3: Managing Fedora Versions in Konflux + +This section describes how to add a new Fedora version or remove an EOL version from Konflux. + +**Example scenario:** Fedora 42 is going EOL and needs to be removed. Rawhide is becoming Fedora 46, so we need to add Fedora 45 (the new branched release). + +### Adding a New Fedora Version to Konflux + +When Rawhide branches to a new Fedora version (e.g., Rawhide → F46, creating F45 as branched), follow these steps: + +#### Step 1: Create Tekton Pipelines (base-images repo) + +Create 12 new pipeline files in `.tekton/` by copying from an existing version (e.g., F44): + +```bash +cd base-images/.tekton/ + +# For each tier (minimal, minimal-plus, standard, iot) and type (push, pull-request, renovate-push): +for tier in minimal minimal-plus standard iot; do + for type in push pull-request renovate-push; do + cp fedora-bootc-44-${tier}-${type}.yaml fedora-bootc-45-${tier}-${type}.yaml + done +done +``` + +Then update each file, replacing: +- `fedora-bootc-44` → `fedora-bootc-45` +- `appstudio.openshift.io/application: fedora-bootc-44` → `fedora-bootc-45` +- `appstudio.openshift.io/component: fedora-bootc-44-*` → `fedora-bootc-45-*` +- `REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:...` → `fedora-bootc-45-compose:...` +- `output-image: .../fedora-bootc-44-*` → `fedora-bootc-45-*` +- `org.opencontainers.image.version=44` → `45` + +#### Step 2: Update Renovate Configuration (base-images repo) + +Add package rules for the new version in `renovate.json`: + +```json +{ + "matchManagers": ["tekton"], + "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], + "matchFileNames": [".tekton/fedora-bootc-45-*"], + "groupName": "Fedora 45 bootc-pipeline", + "groupSlug": "fedora-45-bootc-pipeline", + "branchPrefix": "renovate/fedora-45/", + "commitMessageTopic": "Fedora 45 bootc build pipeline", + "schedule": ["after 2am and before 5am"], + "timezone": "UTC", + "recreateWhen": "always", + "rebaseWhen": "always", + "additionalBranchPrefix": "", + "automerge": true +}, +{ + "matchManagers": ["custom.regex"], + "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-45-compose/"], + "matchFileNames": [".tekton/fedora-bootc-45-*"], + "groupName": "Fedora 45 REPOS_IMAGE", + "groupSlug": "fedora-45-repos-image", + "branchPrefix": "renovate/fedora-45/", + "commitMessageTopic": "Fedora 45 REPOS_IMAGE", + "schedule": ["at any time"], + "recreateWhen": "always", + "rebaseWhen": "never", + "additionalBranchPrefix": "", + "automerge": true +} +``` + +#### Step 3: Create Tenant Configuration (tenants-config repo) + +Create the new version directory structure: + +```bash +cd tenants-config/cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/ + +# Copy from existing version +cp -r 44 45 +``` + +Update files in the new `45/` directory: + +1. **`releaseplans/release-to-quay-io/kustomization.yaml`** - Update component names: + ```yaml + value: + - name: fedora-bootc-45-compose + repository: quay.io/bootc-devel/fedora-bootc-45-compose + tags: + - "{{ labels.compose-branched-id }}" + - name: fedora-bootc-45-minimal + repository: quay.io/bootc-devel/fedora-bootc-45-minimal + # ... etc + ``` + +2. **All kustomization files** - Ensure paths reference the correct version + +#### Step 4: Register the New Version (tenants-config repo) + +Add the new version to `fedora-bootc/kustomization.yaml`: + +```yaml +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: + - "rawhide" + - "45" # <-- Add new version + - "44" + - "43" +``` + +#### Step 5: Initial REPOS_IMAGE + +The new pipelines need a valid `REPOS_IMAGE`. Either: +- Wait for Renovate to detect and update it automatically +- Manually set an initial compose image reference in the tekton files + +### Removing an EOL Fedora Version from Konflux + +When a Fedora version reaches EOL (e.g., F42), follow these steps: + +#### Step 1: Remove Tekton Pipelines (base-images repo) + +Delete the pipeline files for the EOL version: + +```bash +cd base-images/.tekton/ +rm fedora-bootc-42-*.yaml +``` + +#### Step 2: Remove Renovate Rules (base-images repo) + +Remove the package rules for F42 from `renovate.json`: + +```json +// Remove these two blocks: +{ + "matchManagers": ["tekton"], + "matchFileNames": [".tekton/fedora-bootc-42-*"], + ... +}, +{ + "matchManagers": ["custom.regex"], + "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-42-compose/"], + ... +} +``` + +#### Step 3: Remove Tenant Configuration (tenants-config repo) + +Remove the version from `fedora-bootc/kustomization.yaml`: + +```yaml +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: + - "rawhide" + - "45" + - "44" + - "43" + # - "42" <-- Remove this line +``` + +Then delete the version directory: + +```bash +cd tenants-config/cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/ +rm -rf 42/ +``` From d4d9e66dc4d3a6f4da93e2d4bb211601bbcb1e8c Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Tue, 17 Feb 2026 12:09:40 +0100 Subject: [PATCH 400/697] docs: address MR feedback and simplify RELEASE.md - Add compose-images repo to repositories and flow diagram - Fix version numbers (F44 as new version, Rawhide=F45) - Reference MRs for code snippets instead of duplicating code: - compose-images: MR !187 - base-images: MR !363 comment - Simplify Image Tiers section (reference README) - Simplify Renovate section (reference renovate.json) - Add compose-images steps for adding/removing versions - Add repo URLs before shell commands Assisted-By: OpenCode (Opus 4.5) --- RELEASE.md | 263 ++++++++++++++++------------------------------------- 1 file changed, 80 insertions(+), 183 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 00a1de7..e11ca1c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -129,6 +129,7 @@ url = "quay.io/fedora" | Repository | URL | Purpose | |------------|-----|---------| +| compose-images | https://gitlab.com/fedora/bootc/compose-images | Generates images containing RPMs used by base-images | | base-images | https://gitlab.com/fedora/bootc/base-images | Image definitions + Tekton build pipelines | | tekton-catalog | https://gitlab.com/fedora/bootc/tekton-catalog | Release pipeline definitions | | tenants-config | https://gitlab.com/fedora/infrastructure/konflux/tenants-config | Konflux tenant configuration | @@ -137,13 +138,24 @@ url = "quay.io/fedora" ``` ┌──────────────────────────────────────────────────────────────────────┐ +│ 0. COMPOSE IMAGES │ +│ │ +│ Source: gitlab.com/fedora/bootc/compose-images │ +│ Output: quay.io/bootc-devel/fedora-bootc--compose │ +│ │ +│ These images contain the RPM repositories used by base-images. │ +└──────────────────────────────────────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────────┐ │ 1. BUILD (triggered by git push or Renovate) │ │ │ │ Source: gitlab.com/fedora/bootc/base-images │ │ Pipeline: .tekton/fedora-bootc-*-push.yaml │ +│ Input: REPOS_IMAGE from compose-images │ │ │ │ Output: quay.io/konflux-fedora/bootc-tenant/ │ -│ fedora-bootc-rawhide-standard:{{revision}} │ +│ fedora-bootc--:{{revision}} │ └──────────────────────────────────────────────────────────────────────┘ │ ▼ (Konflux creates Snapshot) @@ -152,79 +164,26 @@ url = "quay.io/fedora" │ │ │ ReleasePlan: release-fedora-bootc-to-quay-io │ │ Pipeline: push-to-external-registry │ -│ │ -│ Steps: │ -│ - verify-access-to-resources │ -│ - apply-mapping (source → destination repos) │ -│ - verify-conforma (Enterprise Contract policy check) │ -│ - push-snapshot (skopeo copy to target registry) │ -│ - make-repo-public │ └──────────────────────────────────────────────────────────────────────┘ │ ▼ ┌──────────────────────────────────────────────────────────────────────┐ │ 3. OUTPUT │ │ │ -│ quay.io/bootc-devel/fedora-bootc-rawhide-standard │ -│ quay.io/bootc-devel/fedora-bootc-rawhide-minimal │ -│ quay.io/bootc-devel/fedora-bootc-rawhide-minimal-plus │ -│ quay.io/bootc-devel/fedora-bootc-rawhide-iot │ -│ quay.io/bootc-devel/fedora-bootc-rawhide-compose │ +│ quay.io/bootc-devel/fedora-bootc--standard │ +│ quay.io/bootc-devel/fedora-bootc--minimal │ +│ quay.io/bootc-devel/fedora-bootc--minimal-plus │ +│ quay.io/bootc-devel/fedora-bootc--iot │ └──────────────────────────────────────────────────────────────────────┘ ``` ### Image Tiers -| Tier | Description | Inherits From | -|------|-------------|---------------| -| `minimal` | Minimal bootable base | - | -| `minimal-plus` | Shared base for Fedora image-based variants | minimal | -| `standard` | Full generic base image | minimal-plus | -| `iot` | IoT-specific variant | minimal-plus | +See the [README](README.md) for details on the different image tiers (minimal, minimal-plus, standard, iot). ### Renovate Automation -| Dependency | Schedule | Purpose | -|------------|----------|---------| -| `REPOS_IMAGE` | At any time | Updates compose image reference | -| `bootc-pipeline` | 2-5 AM UTC daily | Updates Tekton pipeline | - -Both are auto-merged when tests pass. - -### Key Configuration Files - -#### 1. Build Pipeline - -**File:** `base-images/.tekton/fedora-bootc-rawhide-standard-push.yaml` - -```yaml -params: - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:... - - MANIFEST=fedora-standard - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} -``` - -#### 2. ReleasePlan (promotion mapping) - -**File:** `tenants-config/cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/rawhide/releaseplans/release-to-quay-io/kustomization.yaml` - -```yaml -- op: replace - path: /spec/data/mapping/components - value: - - name: fedora-bootc-rawhide-standard - repository: quay.io/bootc-devel/fedora-bootc-rawhide-standard - - name: fedora-bootc-rawhide-minimal - repository: quay.io/bootc-devel/fedora-bootc-rawhide-minimal - # ... -``` - -#### 3. Release Pipeline - -**File:** `tekton-catalog/pipelines/push-to-external-registry/push-to-external-registry.yaml` +Renovate automatically updates dependencies. See the description comments in [renovate.json](renovate.json) for scheduling and configuration details. ### Common Changes (Development) @@ -242,99 +201,51 @@ params: This section describes how to add a new Fedora version or remove an EOL version from Konflux. -**Example scenario:** Fedora 42 is going EOL and needs to be removed. Rawhide is becoming Fedora 46, so we need to add Fedora 45 (the new branched release). +**Example scenario:** Fedora 42 is going EOL and needs to be removed. Rawhide (F45) is branching, so we need to add Fedora 44 as the new branched release. ### Adding a New Fedora Version to Konflux -When Rawhide branches to a new Fedora version (e.g., Rawhide → F46, creating F45 as branched), follow these steps: +#### Step 1: Add Release to compose-images Repo -#### Step 1: Create Tekton Pipelines (base-images repo) +**Repository:** https://gitlab.com/fedora/bootc/compose-images -Create 12 new pipeline files in `.tekton/` by copying from an existing version (e.g., F44): +Add the new release definition so that compose images are generated for the new version. This must be done first as base-images depends on these compose images. + +1. Create new Tekton pipelines in `.tekton/` for the new version (copy from existing version) +2. Update `RELEASEVER`, `COMPOSE_BRANCHED`, and labels in the new pipelines +3. Add a package rule for the new version in `renovate.json` + +See [MR !187](https://gitlab.com/fedora/bootc/compose-images/-/merge_requests/187) for reference (F44 addition). + +#### Step 2: Create Tekton Pipelines (base-images repo) + +**Repository:** https://gitlab.com/fedora/bootc/base-images + +Copy the current release pipelines to the new version and update rawhide for the next version. + +See the code snippets used for F44 in [MR !363 comment](https://gitlab.com/fedora/bootc/base-images/-/merge_requests/363#note_3071603283) for reference. + +#### Step 3: Update Renovate Configuration (base-images repo) + +Add package rules for the new version in `renovate.json`. See the existing rules for other versions as a template. + +#### Step 4: Create Tenant Configuration (tenants-config repo) + +**Repository:** https://gitlab.com/fedora/infrastructure/konflux/tenants-config ```bash -cd base-images/.tekton/ +cd cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/ +NEW_RELEASE=44 -# For each tier (minimal, minimal-plus, standard, iot) and type (push, pull-request, renovate-push): -for tier in minimal minimal-plus standard iot; do - for type in push pull-request renovate-push; do - cp fedora-bootc-44-${tier}-${type}.yaml fedora-bootc-45-${tier}-${type}.yaml - done -done +# Copy from rawhide +cp -r rawhide $NEW_RELEASE + +# Update version references +sed -i "s/rawhide/$NEW_RELEASE/g" $NEW_RELEASE/**/*.yaml +sed -i "s/compose-rawhide-id/compose-branched-id/" $NEW_RELEASE/releaseplans/release-to-quay-io/kustomization.yaml ``` -Then update each file, replacing: -- `fedora-bootc-44` → `fedora-bootc-45` -- `appstudio.openshift.io/application: fedora-bootc-44` → `fedora-bootc-45` -- `appstudio.openshift.io/component: fedora-bootc-44-*` → `fedora-bootc-45-*` -- `REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:...` → `fedora-bootc-45-compose:...` -- `output-image: .../fedora-bootc-44-*` → `fedora-bootc-45-*` -- `org.opencontainers.image.version=44` → `45` - -#### Step 2: Update Renovate Configuration (base-images repo) - -Add package rules for the new version in `renovate.json`: - -```json -{ - "matchManagers": ["tekton"], - "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], - "matchFileNames": [".tekton/fedora-bootc-45-*"], - "groupName": "Fedora 45 bootc-pipeline", - "groupSlug": "fedora-45-bootc-pipeline", - "branchPrefix": "renovate/fedora-45/", - "commitMessageTopic": "Fedora 45 bootc build pipeline", - "schedule": ["after 2am and before 5am"], - "timezone": "UTC", - "recreateWhen": "always", - "rebaseWhen": "always", - "additionalBranchPrefix": "", - "automerge": true -}, -{ - "matchManagers": ["custom.regex"], - "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-45-compose/"], - "matchFileNames": [".tekton/fedora-bootc-45-*"], - "groupName": "Fedora 45 REPOS_IMAGE", - "groupSlug": "fedora-45-repos-image", - "branchPrefix": "renovate/fedora-45/", - "commitMessageTopic": "Fedora 45 REPOS_IMAGE", - "schedule": ["at any time"], - "recreateWhen": "always", - "rebaseWhen": "never", - "additionalBranchPrefix": "", - "automerge": true -} -``` - -#### Step 3: Create Tenant Configuration (tenants-config repo) - -Create the new version directory structure: - -```bash -cd tenants-config/cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/ - -# Copy from existing version -cp -r 44 45 -``` - -Update files in the new `45/` directory: - -1. **`releaseplans/release-to-quay-io/kustomization.yaml`** - Update component names: - ```yaml - value: - - name: fedora-bootc-45-compose - repository: quay.io/bootc-devel/fedora-bootc-45-compose - tags: - - "{{ labels.compose-branched-id }}" - - name: fedora-bootc-45-minimal - repository: quay.io/bootc-devel/fedora-bootc-45-minimal - # ... etc - ``` - -2. **All kustomization files** - Ensure paths reference the correct version - -#### Step 4: Register the New Version (tenants-config repo) +#### Step 5: Register the New Version (tenants-config repo) Add the new version to `fedora-bootc/kustomization.yaml`: @@ -343,66 +254,52 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - "rawhide" - - "45" # <-- Add new version - - "44" + - "44" # <-- Add new version - "43" + - "42" ``` -#### Step 5: Initial REPOS_IMAGE - -The new pipelines need a valid `REPOS_IMAGE`. Either: -- Wait for Renovate to detect and update it automatically -- Manually set an initial compose image reference in the tekton files - ### Removing an EOL Fedora Version from Konflux When a Fedora version reaches EOL (e.g., F42), follow these steps: #### Step 1: Remove Tekton Pipelines (base-images repo) -Delete the pipeline files for the EOL version: +**Repository:** https://gitlab.com/fedora/bootc/base-images ```bash -cd base-images/.tekton/ -rm fedora-bootc-42-*.yaml +cd .tekton/ +git rm fedora-bootc-42-*.yaml ``` #### Step 2: Remove Renovate Rules (base-images repo) -Remove the package rules for F42 from `renovate.json`: - -```json -// Remove these two blocks: -{ - "matchManagers": ["tekton"], - "matchFileNames": [".tekton/fedora-bootc-42-*"], - ... -}, -{ - "matchManagers": ["custom.regex"], - "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-42-compose/"], - ... -} -``` +Remove the package rules for F42 from `renovate.json` (the two blocks matching `fedora-bootc-42-*`). #### Step 3: Remove Tenant Configuration (tenants-config repo) -Remove the version from `fedora-bootc/kustomization.yaml`: +**Repository:** https://gitlab.com/fedora/infrastructure/konflux/tenants-config -```yaml -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization -resources: - - "rawhide" - - "45" - - "44" - - "43" - # - "42" <-- Remove this line -``` - -Then delete the version directory: +Remove the version from `fedora-bootc/kustomization.yaml` and delete the directory: ```bash -cd tenants-config/cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/ +cd cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/ + +# Edit kustomization.yaml to remove "42" from resources + +# Delete the version directory rm -rf 42/ ``` + +#### Step 4: Remove from compose-images Repo + +**Repository:** https://gitlab.com/fedora/bootc/compose-images + +Remove the EOL release pipelines and renovate rules: + +```bash +cd .tekton/ +git rm fedora-bootc-42-compose-*.yaml +``` + +Also remove the package rule for F42 from `renovate.json` (the block matching `fedora-42-.*-compose`). From bcbdcb5b7815f1f47b472dcd9be4c3494ae02beb Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Wed, 18 Feb 2026 20:56:38 +0100 Subject: [PATCH 401/697] .tekton: fix minimal-plus SA This fixes [1] which defined wrong SA for minimal-plus stream (wrong copy/paste). [1] https://gitlab.com/fedora/bootc/base-images/-/merge_requests/365 --- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index af3254d..4747969 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal + serviceAccountName: build-pipeline-fedora-bootc-42-minimal-plus diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index b35224c..1857dbb 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -67,4 +67,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal + serviceAccountName: build-pipeline-fedora-bootc-42-minimal-plus diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index b6dd7c4..c9aa9c9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal + serviceAccountName: build-pipeline-fedora-bootc-42-minimal-plus diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 40184f6..08362b5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal + serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 71f9cf6..a437a3f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -67,4 +67,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal + serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 697e118..6d8c791 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal + serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 447120c..d852919 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-44-minimal + serviceAccountName: build-pipeline-fedora-bootc-44-minimal-plus diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d01ece8..fcc6dbd 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -67,4 +67,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-44-minimal + serviceAccountName: build-pipeline-fedora-bootc-44-minimal-plus diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index ca3f045..2b64502 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-44-minimal + serviceAccountName: build-pipeline-fedora-bootc-44-minimal-plus diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index df7d35f..88fcfea 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal-plus diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0736ad4..507ea7a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -67,4 +67,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal-plus diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 05d85ca..39b0017 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -70,4 +70,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal + serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal-plus From 53c4ae3e36cbb4045e8fdbba5ed1e30bcf16d24e Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Thu, 19 Feb 2026 16:19:55 +0100 Subject: [PATCH 402/697] .tekton: disable updates of iot images for F44+ Currently, iot images building process is failing because of [1]. However, the MR is blocked because we can't specifically remove the packages only for F44+ releases [2]. In the meantime, to unblock the pipeline, we ask Renovate to ignore iot for now. [1] https://gitlab.com/fedora/bootc/base-images/-/merge_requests/378 [2] https://gitlab.com/fedora/bootc/base-images/-/issues/74 --- renovate.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/renovate.json b/renovate.json index 8db14b9..e58eb59 100644 --- a/renovate.json +++ b/renovate.json @@ -63,6 +63,15 @@ } ], "packageRules": [ + { + "description": [ + "Disable REPOS_IMAGE updates for 44-iot and rawhide-iot tekton files", + "until we fix https://gitlab.com/fedora/bootc/base-images/-/issues/74" + ], + "matchManagers": ["custom.regex"], + "matchFileNames": [".tekton/*-44-iot-*", ".tekton/*-rawhide-iot-*"], + "enabled": false + }, { "matchManagers": ["tekton"], "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], From 94947af46b564490b6eb7940535a1f9730338c34 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 15 Feb 2026 23:08:02 +0000 Subject: [PATCH 403/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260218.n.0 --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 88fcfea..6049fb3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 507ea7a..96da9ad 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 39b0017..90c974b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a902499..c44322e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 5929004..1e5e260 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 0e322b3..cddad83 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d628c53..b4304fc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 72df74c..818b958 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b431762..56420ac 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 4d3294f99bd3f8ef92582899a2e0c1297308622c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Feb 2026 21:07:42 +0000 Subject: [PATCH 404/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260219.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 7afc2f7..becedfc 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index d6d91c2..1531a7f 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index c05d22b..fbee2f9 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 08362b5..0ee4da6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index a437a3f..07f5ae2 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 6d8c791..53b4b6e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 614e89e..fbed85a 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 24c6bcc..ea2e995 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 7e8eee4..29fa0b3 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 6755a35..9a0e60a 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 4f15e8e..6177a83 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 190882f..549868d 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260129.0@sha256:16ac65151e746111cd0ae81a0c006a1b79b5bca31146b30a96258209b42782a4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 897b5f02c5e0f03b471cb8492e1c223824390f86 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Feb 2026 21:07:48 +0000 Subject: [PATCH 405/697] chore(deps): update fedora 44 repos_image to fedora-44-20260219.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index d852919..4985ad6 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index fcc6dbd..89cb2e2 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 2b64502..79a614e 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 396f8a0..22223d3 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 469705a..1435ee0 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index ebbdcf8..99af75c 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index bd65cd0..8401f9e 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 83075d9..05775fc 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index bc74645..3a4e86c 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c96147302376a0286c92b62251a089abeb56fc64 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 20 Feb 2026 04:07:34 +0000 Subject: [PATCH 406/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260219.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 6049fb3..127e3ef 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 96da9ad..23c5c29 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 90c974b..9d0aab9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c44322e..0f30fb7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 1e5e260..c24872a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index cddad83..71820fb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b4304fc..cfdafa4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 818b958..956eb78 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 56420ac..b113f0b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260218.n.0@sha256:fb0e5c835e7239ab4d372c8b5fa381bc1e019c5b1b44eade626ee96b1fca3046 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 64ab12409719c1e9db508db4838f91ebe576b9a1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 20 Feb 2026 11:08:11 +0000 Subject: [PATCH 407/697] chore(deps): update fedora 44 repos_image to fedora-44-20260220.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 4985ad6..519c9b1 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 89cb2e2..e86daad 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 79a614e..8ba9366 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 22223d3..333ce94 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 1435ee0..7c29be3 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 99af75c..3a6de39 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 8401f9e..379235e 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 05775fc..5368061 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 3a4e86c..07abd4f 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260219.n.0@sha256:43a8f2e9d01f809d0076bccce26df80d36d8fc9d29f697b38db16a665ed7cbbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From af28cc25996c1bfc998cd360b8dd7bfbc5f92966 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 22 Feb 2026 22:09:06 +0000 Subject: [PATCH 408/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260220.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index becedfc..643918a 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 1531a7f..8dcd8a8 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index fbee2f9..54d8b7b 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 0ee4da6..d0981b3 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 07f5ae2..7e02622 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 53b4b6e..76a8ccd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index fbed85a..3a581bd 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index ea2e995..8643642 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 29fa0b3..ee67723 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 9a0e60a..abca768 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 6177a83..29f9432 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 549868d..f45d21c 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260219.0@sha256:1860b6c68c0bdbc017fdc3790648325c983bed684d5c33183dd0ddceba5ac81e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2b0304c0bbc5d83fd8a9dcf12b490e9f1fc5ff29 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 22 Feb 2026 22:09:28 +0000 Subject: [PATCH 409/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260220.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 127e3ef..a0692f6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 23c5c29..3209918 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 9d0aab9..cdaa1b8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 0f30fb7..62a5b36 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index c24872a..6c21291 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 71820fb..9ac7446 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index cfdafa4..0578e0d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 956eb78..60d8b1e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b113f0b..6d34f0d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260219.n.1@sha256:21bd6d2c3e997dc84902875ddd9644687e6a4c79c2e1fd65efb461330a675629 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From dabc24121ef2ddf3ec4baaceb8bda675a971345a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 02:08:28 +0000 Subject: [PATCH 410/697] chore(deps): update fedora 44 repos_image to fedora-44-20260222.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 519c9b1..cdbb7dd 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index e86daad..4d5d9be 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 8ba9366..c1ef125 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 333ce94..77a0187 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 7c29be3..b93b1cd 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 3a6de39..577e6a9 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 379235e..ccfcf59 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 5368061..ebe12fd 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 07abd4f..aab1830 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260220.n.0@sha256:4e0192cb176ec64998c6fa97d9644b571e0e4866c21d11793646eeadd17ee90a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 33ff4ec88931e9c6f57ba841211d8f47a0985369 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 08:07:04 +0000 Subject: [PATCH 411/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260223.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 643918a..2f7bb65 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 8dcd8a8..de42244 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 54d8b7b..a9117b1 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index d0981b3..7e0ff2d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 7e02622..7a47b90 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 76a8ccd..b4138a9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 3a581bd..a776bde 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 8643642..12279ea 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index ee67723..f83a40e 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index abca768..1e3d153 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 29f9432..9e82be6 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index f45d21c..cbd7aa1 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260220.0@sha256:1f702116b0d1718d6b7bea67c5eca460dd6509fea054de06487cd94a47a8d097 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 535bd37b5a567a005d534a4c5a5424264a3ee453 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 08:07:28 +0000 Subject: [PATCH 412/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260222.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a0692f6..87ce0a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3209918..eed898e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index cdaa1b8..5a46507 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 62a5b36..1d9da1d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 6c21291..ca15e8d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 9ac7446..69b0772 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 0578e0d..bf1dfb3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 60d8b1e..6954c2b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 6d34f0d..2bb8885 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260220.n.0@sha256:0dc3d42df67998a5888d82dd88feca3f6c57bf20ce3efcfd2cd693a87cb943e3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c4994040135b6d78d82e661418f3943b64c5762d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 14:08:28 +0000 Subject: [PATCH 413/697] chore(deps): update fedora 43 bootc build pipeline to 2678dd5 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 2f7bb65..95e87bc 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index de42244..2e77497 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index a9117b1..95d27bb 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 7e0ff2d..3d3b5ee 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 7a47b90..b2bd609 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index b4138a9..80a6955 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index a776bde..bb24598 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 12279ea..72abc3c 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index f83a40e..3961557 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 1e3d153..7263f57 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9e82be6..aac526f 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index cbd7aa1..720a8f9 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 8c2dfeed8ae5e6a2fcbd880a496c50a3a35ed35d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 15:07:38 +0000 Subject: [PATCH 414/697] chore(deps): update fedora 44 repos_image to fedora-44-20260223.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index cdbb7dd..62c35d4 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 4d5d9be..32d2a47 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index c1ef125..0880cae 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 77a0187..9b41bcb 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index b93b1cd..ea320b7 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 577e6a9..93c9d3a 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index ccfcf59..29ec5d2 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index ebe12fd..39d63a0 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index aab1830..efb57da 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260222.n.0@sha256:dbef39b983dc261a36f650c168a458c40efc979c311849c5ff00b874cacf322b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6d0e0e14746dd21f994c90421e7d473db57fa7aa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 16:14:41 +0000 Subject: [PATCH 415/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260223.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 87ce0a1..a877918 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index eed898e..7f6c237 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 5a46507..27369b8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1d9da1d..c8aba1c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index ca15e8d..e29f5d5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 69b0772..05b7b60 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index bf1dfb3..4771f41 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6954c2b..98542f4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 2bb8885..cf4f8a6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260222.n.0@sha256:76148144b95e8db96f37fe83612c4950a030a791bd4f32c9c81193704fa96550 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 45f623d215213d157648525c8aba54a386a9e8fb Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Feb 2026 05:07:01 +0000 Subject: [PATCH 416/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260224.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 95e87bc..3437b68 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 2e77497..e56945e 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 95d27bb..b119c04 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 3d3b5ee..4cd9d93 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index b2bd609..1067017 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 80a6955..3774721 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index bb24598..c9dce90 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 72abc3c..31de82b 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 3961557..e6ffe4c 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 7263f57..fc065ed 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index aac526f..4dbd3e8 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 720a8f9..045adb4 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260223.0@sha256:182823055948cf12fd17cf0d3faf0d33c56a993df748f2814d900774143c3611 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 42ce1e13ac6ffeef81c7e3ad3626b12056098a64 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Feb 2026 11:06:52 +0000 Subject: [PATCH 417/697] chore(deps): update fedora 44 repos_image to fedora-44-20260224.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 62c35d4..368c2df 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 32d2a47..5094fcc 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 0880cae..d52ec7f 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 9b41bcb..48e5303 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index ea320b7..03d27c4 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 93c9d3a..5c46d1d 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 29ec5d2..48eec9a 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 39d63a0..b9b4f63 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index efb57da..c61af2f 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260223.n.0@sha256:b37d6039671df3f38854a3158eb6f3cf20224a6303e338e459d96966b2fd8567 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0e613f8f986d73107fec750f47ec59cd61a530af Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Feb 2026 04:07:17 +0000 Subject: [PATCH 418/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260225.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 3437b68..3fae33b 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e56945e..e43b6a3 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index b119c04..d6b012c 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 4cd9d93..c2a859d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 1067017..4622c25 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 3774721..3b218fa 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index c9dce90..82bedc3 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 31de82b..378d051 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index e6ffe4c..a07e68c 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index fc065ed..765f768 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 4dbd3e8..9927e2c 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 045adb4..698e37f 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260224.0@sha256:1eba4fb32738e1bb394b1bd2a25ab11512424440d67daab167dce654a54fd5ef + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 73af9a3f467cfad78a33942454c6d9f4f3d39010 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Feb 2026 09:07:36 +0000 Subject: [PATCH 419/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260225.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a877918..c435023 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 7f6c237..e5ebf42 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 27369b8..8eb28b0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c8aba1c..37d4f94 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e29f5d5..e4cbcdc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 05b7b60..827df6d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4771f41..eea3a57 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 98542f4..7736e9d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index cf4f8a6..73b9ef2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260223.n.0@sha256:312dfdd479a077513ad8d96ddbb22d141d6198c7e7ed814a2e7044bd8a348660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 62a3f43eb7a12ce89d4a97cb00366853423c7b17 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Feb 2026 11:06:48 +0000 Subject: [PATCH 420/697] chore(deps): update fedora 44 repos_image to fedora-44-20260225.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 368c2df..120d2d6 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 5094fcc..3da4856 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index d52ec7f..5727fd5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 48e5303..0fd2510 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 03d27c4..d310ee2 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 5c46d1d..0cfa56e 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 48eec9a..45781af 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index b9b4f63..bee3418 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index c61af2f..09262d5 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260224.n.0@sha256:dd816ba615dd86f1ea9d2996083ab1b6207a92202ef554a9e746454cf455e644 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b49ade72857608d8c82263458a8739502e12fbff Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 26 Feb 2026 04:06:35 +0000 Subject: [PATCH 421/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260226.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 3fae33b..b27e89a 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e43b6a3..85caf3b 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index d6b012c..42acf83 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index c2a859d..e75e33e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 4622c25..351e12d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 3b218fa..951c0e5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 82bedc3..d873b15 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 378d051..e20c24f 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index a07e68c..7bf2288 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 765f768..24cf99a 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9927e2c..bcea1e5 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 698e37f..fbb7f75 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260225.0@sha256:97a9371da9cbb5f32169cf633531441c2b5cb859ccbb7e3445aa9b77550bf4f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 91e1846804c7a1846579275ef6e284e8c2dfabdf Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 26 Feb 2026 11:06:31 +0000 Subject: [PATCH 422/697] chore(deps): update fedora 44 repos_image to fedora-44-20260226.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 120d2d6..c5e404b 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 3da4856..0d4f3fc 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 5727fd5..7aca493 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 0fd2510..32fc9f4 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index d310ee2..54a5991 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 0cfa56e..f00a110 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 45781af..2d50797 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index bee3418..833e0b6 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 09262d5..1e1e192 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260225.n.0@sha256:7beb095a48362fc03c0aca5a4fd1ee21eb1d7bca0f49a0963b6fb528df413660 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 15f6fc7821c1c14782df28c4200a1989c461408a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 27 Feb 2026 03:06:56 +0000 Subject: [PATCH 423/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260227.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index b27e89a..620eb58 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 85caf3b..4c5ebaa 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 42acf83..8a30173 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index e75e33e..9bde8ce 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 351e12d..5277bcd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 951c0e5..97f3e24 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index d873b15..3162368 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index e20c24f..07e58cc 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 7bf2288..89328cb 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 24cf99a..3d133b9 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index bcea1e5..7b49f51 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index fbb7f75..ee1c50c 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260226.0@sha256:a7b0ffed31a2caad261f165de10eed263dfc57410cc6a189ce64e5744c9bd4c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 05572f5dca42bb9f2d3afb6dd08708bc4fadcea6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 13:07:49 +0000 Subject: [PATCH 424/697] chore(deps): update fedora rawhide bootc build pipeline to 2678dd5 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index bacad44..467af1a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 85bfe82..63497bf 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index b3a2ba6..a1b7032 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c435023..8f74e83 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index e5ebf42..c2e7eb8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 8eb28b0..98113c4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 37d4f94..c88f0e4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e4cbcdc..3aaac3f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 827df6d..74fc640 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index eea3a57..2fc66e1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 7736e9d..6a59da9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 73b9ef2..974446f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 80643a292829770dc1eb87bb2cec5c47675cf581 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 13 Mar 2026 04:06:42 +0000 Subject: [PATCH 425/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260313.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index ac7f127..be21f6b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index c5bbf36..e376278 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 6fe8d02..28e381e 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 4747969..c6a37f8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 1857dbb..086bafd 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index c9aa9c9..fafdce0 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 6ebd83e..669b72d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index d62181c..0e41f8f 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8ae3b08..33e3914 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8e93da8..d4436d2 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index c94222e..cc5f1f9 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 5731258..57783c6 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260206.0@sha256:68d0c70c68b2231b78b65e908901052993637c84107e36db15714cd0d05cc616 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2c3404d2a69f910f85f42274f65829427ae56fbe Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 13 Mar 2026 04:07:03 +0000 Subject: [PATCH 426/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260311.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 620eb58..38c2651 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 4c5ebaa..23de93f 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 8a30173..065b2bd 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 9bde8ce..528b099 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 5277bcd..fa1f7d9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 97f3e24..bb03ae0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 3162368..7bcb17b 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 07e58cc..216f51d 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 89328cb..7a31a20 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 3d133b9..150b78a 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 7b49f51..8ddf1c7 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index ee1c50c..1be2242 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260227.0@sha256:2f532d23d7c4e869d6159b353af7a14f56d70f46dcd04ecbc1d2271f664c999d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7ec0f6f481edb0bccc0b4a62a89cc6a21df24fd3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 13 Mar 2026 04:07:23 +0000 Subject: [PATCH 427/697] chore(deps): update fedora 44 repos_image to fedora-44-20260312.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index c5e404b..1ccbdc4 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 0d4f3fc..1120a27 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 7aca493..03e740d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 32fc9f4..36081b2 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 54a5991..cbfed89 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index f00a110..8467536 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 2d50797..52278e1 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 833e0b6..24388e6 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 1e1e192..0203c73 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260226.n.0@sha256:04a40aa7d0f44a9067a99b088f46b02925b29307d416df8f4af4ef2fc18447c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f572db59706f9227ae158494168cbe0ea8d026ea Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 13 Mar 2026 04:07:42 +0000 Subject: [PATCH 428/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260312.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8f74e83..2c96779 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index c2e7eb8..fcee2c6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 98113c4..c3da4e9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c88f0e4..6194da3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3aaac3f..86674d8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 74fc640..b024a2d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 2fc66e1..ce7cac2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6a59da9..27a9651 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 974446f..50637e6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260225.n.0@sha256:d1af4d544da90c6e2c8c8f1571cb42106951741225b42e66f65c64bc4fcf6430 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 42d42691b2700de78cd15548ad16bc97959f05f1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 13 Mar 2026 07:06:48 +0000 Subject: [PATCH 429/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260313.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 38c2651..19c1952 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 23de93f..7d759b6 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 065b2bd..5d4edd3 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 528b099..018751d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index fa1f7d9..eeda5e8 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index bb03ae0..6f434de 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 7bcb17b..4d00471 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 216f51d..ee9879a 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 7a31a20..ff34e85 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 150b78a..95fb580 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 8ddf1c7..f78ab84 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 1be2242..855cb3e 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260311.0@sha256:f13da5044221b10e85b855b7207c73bd28fe1da4116f03afa5b4477942481337 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9813b7ca81bc42819317b04338df67b458aa0d99 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 13 Mar 2026 13:20:28 +0000 Subject: [PATCH 430/697] chore(deps): update fedora 44 repos_image to fedora-44-20260313.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 1ccbdc4..8322e78 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 1120a27..71a822a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 03e740d..bddafea 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 36081b2..a8f1dfc 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index cbfed89..a2110da 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 8467536..f16df4c 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 52278e1..e4fb576 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 24388e6..5de26fd 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 0203c73..bf6e19a 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260312.n.0@sha256:926d3af9309844a80410c1a3fcc1592527da664716e53ecc91a9498b43bb32e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 22cc6520df40da57dc329e6ef8b66ee53384a0c5 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 13 Mar 2026 14:06:26 +0000 Subject: [PATCH 431/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260313.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2c96779..5593bad 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index fcee2c6..eb147a7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c3da4e9..56244e9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6194da3..095e785 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 86674d8..52f1c80 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index b024a2d..c8d6c8c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ce7cac2..2473b3f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 27a9651..a26f6df 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 50637e6..9f28c4f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260312.n.0@sha256:1159bd3dff8575f3a862d99e65ffbf381ce8ceb652f0bee814f08f8fac2e06a7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From bd3b25d0569fba7ad1d5688f10bd172b86d6135b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 16 Mar 2026 00:08:31 +0000 Subject: [PATCH 432/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260315.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index be21f6b..2c14c69 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index e376278..732f195 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 28e381e..c201e95 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index c6a37f8..6d5a776 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 086bafd..6a9ad89 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index fafdce0..fc42bd8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 669b72d..1b2488d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 0e41f8f..b8d80e3 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 33e3914..c1205c3 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index d4436d2..e68f735 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index cc5f1f9..051c1ce 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 57783c6..e727ee5 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260313.0@sha256:8dbb619c539f6b7955788493923d418ffc9715b5571ca5c42718d24a0daf290b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From bde2457b2bc54edca9e4d75cafda9b9877fd8c5e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 16 Mar 2026 01:07:44 +0000 Subject: [PATCH 433/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260315.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 19c1952..6e7cb78 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 7d759b6..908086b 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 5d4edd3..9b5d391 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 018751d..f57885c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index eeda5e8..3ae7c56 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 6f434de..880665e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 4d00471..09be5c2 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index ee9879a..6b7db6c 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index ff34e85..a941137 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 95fb580..d11faaf 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f78ab84..1e63102 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 855cb3e..a3c0711 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260313.0@sha256:4da96a76f72f79761a6fd4bcc0b6a571ad284deace10c4ab04ae7b14b5370bbf + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9d68378c7b26c336c78bf2a2e0d07e9588c6fa2b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 16 Mar 2026 04:07:09 +0000 Subject: [PATCH 434/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260316.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2c14c69..2fb570e 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 732f195..d5b0c42 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index c201e95..850b515 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 6d5a776..13a3992 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 6a9ad89..9eefe0d 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index fc42bd8..ba145d7 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 1b2488d..02c86aa 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index b8d80e3..7b4333e 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c1205c3..6c995f4 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index e68f735..9564560 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 051c1ce..9b0b6d4 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index e727ee5..82d7716 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260315.0@sha256:20af09764a2dffcc93f05d9ec4ff631a7a4500fe4876d51d3e4024eb73c15fe4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ea029e738afa9de46d1b9eee41a54cd2b4dc49ad Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 16 Mar 2026 05:07:25 +0000 Subject: [PATCH 435/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260315.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 5593bad..8bcf06f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index eb147a7..80bb97f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 56244e9..9a0b64e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 095e785..0587774 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 52f1c80..c0e5069 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index c8d6c8c..6fed9a0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 2473b3f..1c0b104 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a26f6df..1fb0d2a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 9f28c4f..720c1ee 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260313.n.0@sha256:451e9fb0d059665015ab79bfe1689390f68a676ce62b81ca98312c8caef60026 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 307a103d45a5f275b1f1eeee5c5262a3650088e4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 16 Mar 2026 09:06:34 +0000 Subject: [PATCH 436/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260316.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8bcf06f..c077f08 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 80bb97f..14d2b3c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 9a0b64e..5103550 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 0587774..47d80d3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index c0e5069..d9a5806 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 6fed9a0..fbafc78 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1c0b104..b80b968 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 1fb0d2a..ebed8e3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 720c1ee..e2ee85e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260315.n.0@sha256:44fc3bec73a0ed6fc0d22b0abb9dedb6f5e4395c6990f6b777008080d5c77372 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5126c8cbea07a661579a0f97c1fd739b49d34180 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 16 Mar 2026 22:45:28 +0000 Subject: [PATCH 437/697] ci: Add Justfile, update CI to use just targets Following the bootc-dev repository-structure.md guidelines, add a Justfile as the development entry point so CI flows are easily replicable locally. The CI now invokes 'just ' instead of inline build commands. Configuration is via environment variables: TIER - content tier (standard, minimal, minimal-plus, iot) FEDORA_VERSION - target Fedora release (rawhide, 43, 44, ...) BUILDER - container build tool (buildah, podman) CI tests each tier against both rawhide and Fedora 44, and smoke-tests Fedora 43 with a standard build. Assisted-by: OpenCode (Claude Opus 4) --- .gitlab-ci.yml | 54 ++++++++++++++++--------------- Justfile | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 116 insertions(+), 26 deletions(-) create mode 100644 Justfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2175264..cf59be4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,9 @@ --- +# CI for fedora-bootc base images. +# +# All build and test logic lives in the Justfile so that CI flows +# are easily replicable locally: just install `just` and run the +# same targets that CI does. workflow: rules: # Skip CI if only non-build files changed @@ -14,12 +19,17 @@ stages: - build variables: - PRIV_ARGS: "--security-opt=label=disable --cap-add=all --device /dev/fuse" + BUILDER: buildah + JUST_VERSION: "1.40.0" .build-image: stage: build image: quay.io/buildah/stable:v1.42.2 needs: [] + before_script: + # just is not packaged in the buildah image; grab a pinned static binary + - curl -sSfL -o /tmp/just.tar.gz "https://github.com/casey/just/releases/download/${JUST_VERSION}/just-${JUST_VERSION}-x86_64-unknown-linux-musl.tar.gz" + - tar -xzf /tmp/just.tar.gz -C /usr/local/bin just basic-checks: stage: build @@ -27,32 +37,24 @@ basic-checks: needs: [] script: | set -xeuo pipefail - dnf install -y file jq python3-yaml ShellCheck - ./ci/find-whitespace - ./ci/shellcheck - ./ci/validate + dnf install -y file jq python3-yaml ShellCheck just + just validate -build-minimal: +# Test each tier against rawhide and the latest stable release +build-and-test: extends: .build-image - script: | - set -xeuo pipefail - buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal ${PRIV_ARGS} --build-arg=manifest=fedora-minimal . - cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc:minimal + parallel: + matrix: + - FEDORA_VERSION: [rawhide, "44"] + TIER: [minimal, minimal-plus, standard] + script: + - just test -build-minimal-plus: +# Smoke-test older Fedora versions (standard tier, build only) +build-fedora-version: extends: .build-image - script: | - set -xeuo pipefail - buildah build -f Containerfile --no-cache -t localhost/fedora-bootc:minimal-plus ${PRIV_ARGS} --build-arg=manifest=fedora-minimal-plus . - cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc:minimal-plus - - -standard-build-and-test: - extends: .build-image - script: | - set -xeuo pipefail - buildah build --no-cache -t localhost/fedora-bootc ${PRIV_ARGS} . - (cd tests/rootfs && buildah build -t localhost/test --from localhost/fedora-bootc) - cd tests - buildah build -f Containerfile.test-derive --no-cache -t localhost/fedora-bootc-derived ${PRIV_ARGS} . - buildah build -f Containerfile.test-sysusers --no-cache -t localhost/fedora-bootc-derived ${PRIV_ARGS} . + parallel: + matrix: + - FEDORA_VERSION: ["43"] + script: + - just build diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..3c954d9 --- /dev/null +++ b/Justfile @@ -0,0 +1,88 @@ +# Development entry point for fedora-bootc base images. +# Run `just --list` to see available targets. +# See CONTRIBUTING.md for more information. +# -------------------------------------------------------------------- + +# Content tier: standard (default), minimal, minimal-plus, iot +tier := env("TIER", "standard") +# Fedora version: rawhide (default), 43, 44, etc. +fedora_version := env("FEDORA_VERSION", "rawhide") +# Container build tool +builder := env("BUILDER", "buildah") +# Extra arguments for the builder +builder_extra := env("BUILDER_EXTRA", "") +# Output image name +image := "localhost/fedora-bootc" + +# These are required for the nested containerization used by rpm-ostree +# inside the Containerfile. +priv_args := "--security-opt=label=disable --cap-add=all --device /dev/fuse" + +# Internal +_build_cmd := builder + " build" +_tag := image + if tier == "standard" { "" } else { ":" + tier } +_base_image := "quay.io/fedora/fedora:" + fedora_version +_version_args := if fedora_version == "rawhide" { "" } else { "--build-arg=REPOS_IMAGE=" + _base_image + " --build-arg=BUILDER_IMAGE=" + _base_image } + +# ============================================================================ +# Core targets +# ============================================================================ + +# Build the container image +[group('core')] +build: _check-tier + {{_build_cmd}} -f Containerfile --no-cache \ + -t {{_tag}} {{priv_args}} \ + {{_version_args}} {{builder_extra}} \ + --build-arg=MANIFEST=fedora-{{tier}} . + +# Build and test +[group('core')] +test: build + #!/usr/bin/env bash + set -xeuo pipefail + {{_build_cmd}} -f tests/rootfs/Dockerfile -t localhost/test --from {{_tag}} tests/rootfs + # The derive and sysusers tests only apply to the standard tier + if [ "{{tier}}" = "standard" ]; then + {{_build_cmd}} -f tests/Containerfile.test-derive --no-cache \ + -t localhost/fedora-bootc-derived {{priv_args}} {{builder_extra}} tests + {{_build_cmd}} -f tests/Containerfile.test-sysusers --no-cache \ + -t localhost/fedora-bootc-derived {{priv_args}} {{builder_extra}} tests + fi + +# Run validation checks (whitespace, shellcheck, YAML) +[group('core')] +validate: + #!/usr/bin/env bash + set -xeuo pipefail + ./ci/find-whitespace + ./ci/shellcheck + ./ci/validate + +# Show current configuration +[group('core')] +show-config: + @echo "TIER={{tier}}" + @echo "FEDORA_VERSION={{fedora_version}}" + @echo "BUILDER={{builder}}" + @echo "image tag={{_tag}}" + @echo "base image={{_base_image}}" + +# ============================================================================ +# CI targets (used by .gitlab-ci.yml) +# ============================================================================ + +# Run all CI checks: validate + build and test all tiers +[group('ci')] +ci: validate + just tier=minimal test + just tier=minimal-plus test + just tier=standard test + +# ============================================================================ +# Internal +# ============================================================================ + +[private] +_check-tier: + @test -f fedora-{{tier}}.yaml || { echo "error: unknown tier '{{tier}}' (valid: standard, minimal, minimal-plus, iot)"; exit 1; } From b70a0aa571a59d420fb06ca27d1729d0bad0aabd Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 16 Mar 2026 22:45:28 +0000 Subject: [PATCH 438/697] docs: Add CONTRIBUTING.md, point README at it Keep README concise; detailed development workflow (prerequisites, env var configuration, examples) lives in CONTRIBUTING.md. Assisted-by: OpenCode (Claude Opus 4) --- CONTRIBUTING.md | 24 ++++++++++++++++++++++++ README.md | 20 ++++---------------- 2 files changed, 28 insertions(+), 16 deletions(-) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..b938ef9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,24 @@ +# Contributing to fedora-bootc base images + +## Prerequisites + +Everything revolves around our Containerfile, but there's +a high level wrapper in `Justfile` which you should use. +So installing `podman` (or `buildah`) and `just` are strongly recommended. + +## Building and testing + +Run `just --list` to see available targets and `just show-config` to +see current settings. The Justfile is also what CI invokes, so anything +you run locally is the same as what runs in the pipeline. + +Configuration is via environment variables — see the comments at the +top of the `Justfile` for the full list. For example: + +```bash +just build # defaults +TIER=minimal just build # different tier +FEDORA_VERSION=43 just test # different Fedora version +BUILDER=podman just build # use podman instead of buildah +just ci # full CI run (validate + test all tiers) +``` diff --git a/README.md b/README.md index 5659663..9df7915 100644 --- a/README.md +++ b/README.md @@ -18,28 +18,17 @@ If you want total control over the image, you don't need to fork this repository Instead, you can use the existing container as a "builder" to make new images. For more information, see the documentation[6]. -## Build process +## Contributing -Building the images in this repo can be done with `podman build`, but -note the build process uses a special podman-ecosystem specific mechanism -to create fully custom images while inside a `Containerfile`. -You need to enable some privileges as nested containerization is required. - -```bash -podman build --security-opt=label=disable --cap-add=all \ - --device /dev/fuse -t localhost/fedora-bootc . -``` - -See the `Containerfile` for more details. This builds the default `standard` image. +See [CONTRIBUTING.md](CONTRIBUTING.md) for the full development workflow. ## Fedora versions By default, the base images are built for Fedora rawhide. To build against a -different Fedora version, you can override the `FROM` image used to obtain the -Fedora repos and dnf variables. E.g.: +different Fedora version: ```bash -podman build --from quay.io/fedora/fedora:41 ... +FEDORA_VERSION=43 just build ``` ## Content sets/tiers @@ -69,7 +58,6 @@ one stakeholder of each Fedora variant WGs. | ------- | -------- | ------- | ------------ | | Rawhide | quay.io/bootc-devel/fedora-bootc-rawhide-standard | quay.io/bootc-devel/fedora-bootc-rawhide-minimal | quay.io/bootc-devel/fedora-bootc-rawhide-minimal-plus | | Fedora 43 | quay.io/bootc-devel/fedora-bootc-43-standard | quay.io/bootc-devel/fedora-bootc-43-minimal | quay.io/bootc-devel/fedora-bootc-43-minimal-plus | -| Fedora 42 | quay.io/bootc-devel/fedora-bootc-42-standard | quay.io/bootc-devel/fedora-bootc-42-minimal | quay.io/bootc-devel/fedora-bootc-42-minimal-plus | ## More information From b37a6662b7b3ad71b82701ca88eb7db23e5fc0d4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 13:07:41 +0000 Subject: [PATCH 439/697] chore(deps): update fedora 44 bootc build pipeline to 2678dd5 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-iot-push.yaml | 2 +- .tekton/fedora-bootc-44-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-44-iot-pull-request.yaml b/.tekton/fedora-bootc-44-iot-pull-request.yaml index a6082cd..8bc6aac 100644 --- a/.tekton/fedora-bootc-44-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-44-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-iot-push.yaml b/.tekton/fedora-bootc-44-iot-push.yaml index 4ffaa5c..ed336ee 100644 --- a/.tekton/fedora-bootc-44-iot-push.yaml +++ b/.tekton/fedora-bootc-44-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-iot-renovate-push.yaml b/.tekton/fedora-bootc-44-iot-renovate-push.yaml index 04ba72f..7512ab2 100644 --- a/.tekton/fedora-bootc-44-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 8322e78..ee54170 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 71a822a..8a1a1bf 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index bddafea..5283d07 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index a8f1dfc..b474571 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index a2110da..1e63019 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index f16df4c..cb5627e 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index e4fb576..5d380bb 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 5de26fd..b993da9 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index bf6e19a..497a3bd 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 3a9f9c79bd029390fdd5262355ff1a833bec196f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 17 Mar 2026 08:06:36 +0000 Subject: [PATCH 440/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260317.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2fb570e..fff360d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index d5b0c42..4202041 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 850b515..c98451d 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 13a3992..38300fe 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 9eefe0d..cf01934 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index ba145d7..6ae21b0 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 02c86aa..18bb81d 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 7b4333e..619ce4c 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 6c995f4..c7e9de3 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 9564560..1f1cac3 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 9b0b6d4..e9a71f6 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 82d7716..2caaad0 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260316.0@sha256:b225e2afa68e8e9ec1ce684a365acc645381acff07ead66f1a4b9706a2086e4f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5302889933fda070c9965dd0e01ba5c8f800d3a6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 17 Mar 2026 09:06:39 +0000 Subject: [PATCH 441/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260317.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 6e7cb78..66e62a8 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 908086b..e978879 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 9b5d391..2ccec13 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index f57885c..2ccccb6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 3ae7c56..362314f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 880665e..207f140 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 09be5c2..e939801 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 6b7db6c..2a0ddc5 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index a941137..27ae08b 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d11faaf..5dddad1 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 1e63102..b4efdc0 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index a3c0711..dc47bf2 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260315.0@sha256:44b3767a563e4f5029fb41a21edac1ca51a071938f8e1cae5f63124fe9864701 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1575f24c8c77b2a8314e0a01e9dd271025487dc6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 17 Mar 2026 09:06:59 +0000 Subject: [PATCH 442/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260317.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c077f08..01c661e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 14d2b3c..cf13946 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 5103550..4aef58f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 47d80d3..b7accd0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index d9a5806..e7ecacf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index fbafc78..4d2a061 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b80b968..4a358f6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index ebed8e3..97291d2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index e2ee85e..60fdc7e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260316.n.0@sha256:611e2352f2514e098952adf432ac2251e643381b8e3aa31350538cbd881c70e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 755b54ffd32d673d35eb762b42e7bb93409d878c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Feb 2026 14:08:06 +0000 Subject: [PATCH 443/697] chore(deps): update fedora 42 bootc build pipeline to 2678dd5 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 2fb570e..85970b9 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index d5b0c42..dfd3fbb 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 850b515..5315eeb 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 13a3992..a530ff8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 9eefe0d..e2d66ad 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index ba145d7..0a8c60f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 02c86aa..fa3b0b6 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 7b4333e..a7efd8a 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 6c995f4..08d10ab 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 9564560..08dbe8a 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 9b0b6d4..a9227da 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 82d7716..cbe76d0 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From fb04e53cc050beeebb00bbde78b81795100e3375 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 17 Mar 2026 12:07:37 +0000 Subject: [PATCH 444/697] chore(deps): update fedora 44 repos_image to fedora-44-20260317.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index ee54170..e425ee3 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 8a1a1bf..1d0b6af 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 5283d07..f72b638 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index b474571..3b5eb07 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 1e63019..b1dc715 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index cb5627e..5580c33 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 5d380bb..54d3ace 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index b993da9..121f8a2 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 497a3bd..be963dd 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260313.n.0@sha256:b9265b35fa12c58e7fa762055594d6e9edd60830bf069261f121ee7da54f233a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c2f100b6576457843e4894ae41ab78c905b6f276 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 18 Mar 2026 04:06:53 +0000 Subject: [PATCH 445/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260318.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index c6b98a3..6e8782d 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 1238be3..4e974d9 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index ba68aef..7566687 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 4ee5569..cc69162 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index d008a0c..b211dc8 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 6cccd61..9804324 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 378292e..494b9af 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 03892a2..2f3fa6e 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index d04de48..fd131da 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index cbf6f77..394ca9b 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index e36c5d0..6e318e6 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index bcd2c30..9634b31 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260317.0@sha256:9df7a59740909da85f2b66f5df8b79c939d756564065e4b524baed85e7c02207 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8ba0f892500fbe23d423df6a4c11750634e03770 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 18 Mar 2026 09:06:43 +0000 Subject: [PATCH 446/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260318.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 01c661e..9ce041d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index cf13946..3c8303a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 4aef58f..68c7de7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index b7accd0..ef07112 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e7ecacf..729fabe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 4d2a061..ac3408e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4a358f6..4734939 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 97291d2..6fa729f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 60fdc7e..f239dab 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260317.n.0@sha256:1ee2bac17a1623faa053c7fb068b0ace038bd4aca2e405feb253b23c5d8a25c8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b359f800a8d1487bde424aaa0787d9b3ecc9c2fa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 18 Mar 2026 10:06:30 +0000 Subject: [PATCH 447/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260318.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 66e62a8..19152cb 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e978879..52a2062 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 2ccec13..7a0a441 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 2ccccb6..729a127 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 362314f..78bb70e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 207f140..704f671 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index e939801..19d75bd 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 2a0ddc5..f89b1e0 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 27ae08b..1ec2bf2 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 5dddad1..24ebe02 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index b4efdc0..e7bc593 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index dc47bf2..1a7364c 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260317.0@sha256:985a2b1c2404b5492e85677199bc815bbca74616dabd62005588d5fb2d7f1405 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e921a589e42819b5acd87c792744c1ccd3236d8e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 18 Mar 2026 19:06:40 +0000 Subject: [PATCH 448/697] chore(deps): update fedora 44 repos_image to fedora-44-20260318.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index e425ee3..15f6720 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 1d0b6af..bbce35b 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index f72b638..e3595d3 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 3b5eb07..a7624e2 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index b1dc715..703c6d0 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 5580c33..a38f671 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 54d3ace..5122c36 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 121f8a2..fc3b40d 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index be963dd..7dbac8b 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260317.n.0@sha256:b8bb0659f3a5029659c4abfb00f11321b5cc6ec418540be976ee5054a52f1d4a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 18797bac713a718e36e53d2d2029d3c9ab17ccca Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Mar 2026 06:06:26 +0000 Subject: [PATCH 449/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260319.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 19152cb..3970972 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 52a2062..dbb4481 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 7a0a441..d5505ae 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 729a127..9aae5a8 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 78bb70e..07db111 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 704f671..1bc9a68 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 19d75bd..362df07 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index f89b1e0..9818258 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 1ec2bf2..d4284ea 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 24ebe02..e13550e 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index e7bc593..5693998 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 1a7364c..ca6c4f3 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260318.0@sha256:36ca1ee1ce2f67459ff12c01ac9418268c0c5c7203162f3ca01e077b8fea2b4e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ec2101b5642515108523edc7e15aaa2bbce8e803 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Mar 2026 09:06:32 +0000 Subject: [PATCH 450/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260319.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 9ce041d..0197488 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3c8303a..fb170d2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 68c7de7..0ab8802 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ef07112..4a83748 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 729fabe..08c360e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ac3408e..219d819 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4734939..ccadf1c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6fa729f..e3fde31 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index f239dab..faa84e3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260318.n.0@sha256:8c3a7b84e47a40c31da67ea7975c4a601e12535f29ca9af183e598b30ae1bce5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b9dec15a1b52b3b047115bafdc3a6093d9cb5aa6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Mar 2026 11:08:50 +0000 Subject: [PATCH 451/697] chore(deps): update fedora 44 repos_image to fedora-44-20260319.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 15f6720..6d824ed 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index bbce35b..d625ef2 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index e3595d3..5cc0b84 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index a7624e2..45bc8e4 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 703c6d0..44939c7 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index a38f671..e6b6031 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 5122c36..f05eafe 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index fc3b40d..23b71c2 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 7dbac8b..3ae7534 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260318.n.0@sha256:c43d49ef4a9b36f5c710aeb085012169d973a07fc75cedd77f203639c521b813 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 83ba3346ade9fc2fcad0bf09f9011119eb127307 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 17 Mar 2026 11:48:33 -0400 Subject: [PATCH 452/697] initramfs: Also enable bootc This is needed for composefs. Signed-off-by: Colin Walters --- minimal/initramfs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimal/initramfs.yaml b/minimal/initramfs.yaml index fc1fdc2..0256d9c 100644 --- a/minimal/initramfs.yaml +++ b/minimal/initramfs.yaml @@ -10,7 +10,7 @@ postprocess: # Dracut will always fail to set security.selinux xattrs at build time # https://github.com/dracut-ng/dracut-ng/issues/1561 export DRACUT_NO_XATTR=1 - add_dracutmodules+=" kernel-modules dracut-systemd systemd-initrd base ostree " + add_dracutmodules+=" kernel-modules dracut-systemd systemd-initrd base ostree bootc " EOF cat > /usr/lib/dracut/dracut.conf.d/22-bootc-generic.conf << 'EOF' # Extra modules that we want by default that are known to exist in the kernel From fcac276a88573e93a3798c3e10894335662f51aa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 20 Mar 2026 03:06:51 +0000 Subject: [PATCH 453/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260320.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 3970972..dbe7455 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index dbb4481..daf501a 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index d5505ae..4460303 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 9aae5a8..8ba0e9b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 07db111..a2bd84f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 1bc9a68..33cb02e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 362df07..a0705e1 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 9818258..de44b85 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index d4284ea..1f88df2 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index e13550e..b7903c3 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 5693998..9cc1a34 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index ca6c4f3..1122d9e 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260319.0@sha256:f7e9b40ecfb058de80b2ccfe8974beb5a83a94f3bc04d45b873921eb34dc0104 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c2b1cd182277b7981b77dfad4fcdd6b5dfcf6181 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 20 Mar 2026 09:07:20 +0000 Subject: [PATCH 454/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260320.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0197488..273c971 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index fb170d2..8133e5f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0ab8802..90e80d1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 4a83748..2443584 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 08c360e..40dc4ff 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 219d819..d3d7682 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ccadf1c..bfa1896 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index e3fde31..f6d80ce 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index faa84e3..17679a6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260319.n.0@sha256:7913d5702a55e2029f51a06cb591337525c1455acccd46981e3d34221b6696eb + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2248b9c619031047c136a07b538a104c3ba4c851 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 20 Mar 2026 11:06:38 +0000 Subject: [PATCH 455/697] chore(deps): update fedora 44 repos_image to fedora-44-20260320.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 6d824ed..3cdeec9 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d625ef2..cbc3872 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 5cc0b84..0124e82 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 45bc8e4..a526879 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 44939c7..eff8369 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index e6b6031..5280dec 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index f05eafe..29c18bc 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 23b71c2..263ed9e 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 3ae7534..2e636af 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260319.n.0@sha256:c39c8f0c7626be78c1c027a85d330728502393a2be25cb34b89b81f77686090d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b6f735d351372f61312efec442dc4dcb0d738407 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 20 Mar 2026 12:06:45 +0000 Subject: [PATCH 456/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260320.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 6e8782d..9018d2f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 4e974d9..3f36fb1 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 7566687..a5fbcd2 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index cc69162..df0e367 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index b211dc8..efb1452 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 9804324..cd1305f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 494b9af..429c6cc 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 2f3fa6e..cac6eee 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index fd131da..c9f7a2d 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 394ca9b..4f41baa 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 6e318e6..36d254f 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 9634b31..3757b5d 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260318.0@sha256:d258fb6e6c51c1554c2de2124a6c78168e6a09b8c9bcc2d562419580c4b0bdb8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 12b7a4a324f0068e987e0e1d0bd92644aa303ac4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Mar 2026 05:07:37 +0000 Subject: [PATCH 457/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260322.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 273c971..f55db7a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 8133e5f..77a81dc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 90e80d1..3d2a95d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 2443584..3a02ceb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 40dc4ff..a15732f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index d3d7682..d92d80d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index bfa1896..40dfcaa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f6d80ce..f7e07c1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 17679a6..17e519f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260320.n.0@sha256:83ea21c9953434c3a0b45351f19d9ddda2bf31bb90d48559343ca325d6078700 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e6bd7acba97220a29b2b7ecd6ba9d5f75638c076 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Mar 2026 09:06:37 +0000 Subject: [PATCH 458/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260323.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 9018d2f..a9db5f9 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 3f36fb1..3bde998 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index a5fbcd2..fecfe39 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index df0e367..00fa817 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index efb1452..6d0cc9f 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index cd1305f..dce04f1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 429c6cc..11dbc67 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index cac6eee..aba899b 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index c9f7a2d..9117def 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 4f41baa..375aa09 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 36d254f..a3f9cf1 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 3757b5d..e5cbffd 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260320.0@sha256:53ece631397c2d5805c06edda4a62e1ed1c73fd0ba00901fe288862b5097e738 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 13a3a8ed207b339710156c5b516541cb6b0ef21a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Mar 2026 09:06:58 +0000 Subject: [PATCH 459/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260323.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index dbe7455..eef3ac6 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index daf501a..24a4268 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 4460303..5e3238d 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 8ba0e9b..43f2d55 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index a2bd84f..7c3a689 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 33cb02e..2bdf6de 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index a0705e1..424d615 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index de44b85..a3b9855 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 1f88df2..7ab7571 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index b7903c3..1279996 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9cc1a34..0f3d600 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 1122d9e..3713264 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260320.0@sha256:fa9f93d2540d897efa5bd2eb965b67d2d8d044dbce5276b77a63f4e490c3109e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d8f9e7ca54fc9635d3c0235fbe7808613c6c7698 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Mar 2026 10:10:13 +0000 Subject: [PATCH 460/697] chore(deps): update fedora 44 repos_image to fedora-44-20260322.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 3cdeec9..8d0cd82 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index cbc3872..c857521 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 0124e82..43b2bd8 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index a526879..1f9593c 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index eff8369..77f9d7f 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 5280dec..70836f1 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 29c18bc..e2a0daf 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 263ed9e..92208df 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 2e636af..9c8d7b4 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260320.n.0@sha256:ac3369f0afe93f3181044b345f0d41116f4a31fa09a6bf7b4b5b09028a16c573 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5ae2a3c1748b8d0f2f6c6e8e0da6b9934a022636 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Mar 2026 10:10:34 +0000 Subject: [PATCH 461/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260323.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index f55db7a..cfe06be 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 77a81dc..652210b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 3d2a95d..7e8ef9c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 3a02ceb..345b56a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index a15732f..f3bba1a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index d92d80d..3b2798a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 40dfcaa..856759c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f7e07c1..0a19c39 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 17e519f..8543aba 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260322.n.0@sha256:5ee752c663c81dff61a035adb8c127f8bd1d27f99e036b29e28f86cbbbc3a942 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e0b9c7c4d1badf0ccef39401af25fca1ef2d85ab Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 23 Mar 2026 13:11:13 +0000 Subject: [PATCH 462/697] chore(deps): update fedora 44 repos_image to fedora-44-20260323.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 8d0cd82..6d38b33 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index c857521..2f3e835 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 43b2bd8..602047c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 1f9593c..d15a923 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 77f9d7f..58bc278 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 70836f1..6e6f578 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index e2a0daf..4d1c8df 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 92208df..fd49cb7 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 9c8d7b4..40a9e07 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260322.n.0@sha256:34d301e4aecab06126fee922d7c7cf50eec5e49557cbb69c99706bcb88a6b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d95421cb0463dd7c068fc889a8b4ac45560a96af Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Mar 2026 03:06:33 +0000 Subject: [PATCH 463/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260324.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index eef3ac6..cd3833d 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 24a4268..577f79a 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 5e3238d..7e1d705 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 43f2d55..b9790d6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 7c3a689..e74d07f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 2bdf6de..79e41a5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 424d615..cff3c25 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index a3b9855..eeca4b4 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 7ab7571..3694b62 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 1279996..0e2ed0e 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0f3d600..0c4fe41 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 3713264..2ad8693 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260323.0@sha256:0e304081bef568b9368fe489619bb7d78d172b8a31b15ba343d1d3fdd1b3593b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d7214b84b592624c1ee525b0995fdbd22a9731a2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Mar 2026 04:06:28 +0000 Subject: [PATCH 464/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260324.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index a9db5f9..9e64503 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 3bde998..21df0c9 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index fecfe39..d37adb9 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 00fa817..a9c4003 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 6d0cc9f..d0003de 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index dce04f1..3a74cd2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 11dbc67..6a893cd 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index aba899b..5e5380a 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 9117def..5a03821 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 375aa09..5999093 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index a3f9cf1..3cd955f 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index e5cbffd..67594c9 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260323.0@sha256:ad71414ffca0adb20e5e552f85bbe5e04f97a1bc854e1e92738af1d6c0c44a9c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 79056b2771edd071d094ba0c2fa1937734916db7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Mar 2026 09:12:23 +0000 Subject: [PATCH 465/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260324.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index cfe06be..2dff78d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 652210b..8444117 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 7e8ef9c..1291ab7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 345b56a..ba905ce 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f3bba1a..af3f6d7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 3b2798a..5f98634 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 856759c..53ca318 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0a19c39..88292ed 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 8543aba..a29c858 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260323.n.0@sha256:50cc1bcb7dc90815c1c97af4a0cea5c079cea1b3df579121f760acd0fa87523d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 714c3fcf803a01625ccf1b6a6f427f2b36a9711e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 24 Mar 2026 11:12:56 +0000 Subject: [PATCH 466/697] chore(deps): update fedora 44 repos_image to fedora-44-20260324.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 6d38b33..10f1921 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 2f3e835..5142a38 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 602047c..2b0c3be 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index d15a923..ea7efc5 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 58bc278..a81ce1f 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 6e6f578..3416a0d 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 4d1c8df..3e150a1 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index fd49cb7..a034d81 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 40a9e07..d9a7ef2 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260323.n.0@sha256:e8e5fd0100640ffdd141f1e1eec12176331b0f17f2e73e4b8a9e7cc1235cd080 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9ea5e8e6e785d266427d114ff18403e68c6832e0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Mar 2026 09:06:43 +0000 Subject: [PATCH 467/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260325.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 9e64503..91ab08f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 21df0c9..132e8cc 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index d37adb9..8047fba 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index a9c4003..fb15b88 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index d0003de..6fa24d6 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3a74cd2..53f9658 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 6a893cd..2ec9a4b 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 5e5380a..9a7d3a3 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 5a03821..391e0af 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 5999093..2a05ab5 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 3cd955f..10b86a3 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 67594c9..d63e138 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260324.0@sha256:35b0562720d21b071cc11433fda3c8e963ad25a8b5b973739ee5d9755a0e9153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5ade4fa352a15f67377fea0e29ad82642fc99d3b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Mar 2026 09:07:04 +0000 Subject: [PATCH 468/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260325.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2dff78d..422dfc1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 8444117..5b8e3e6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 1291ab7..6d3e19d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ba905ce..ef0d50d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index af3f6d7..759e631 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 5f98634..7a600b1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 53ca318..21eb71c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 88292ed..7a8de30 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index a29c858..9d3e538 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260324.n.0@sha256:ba532ed2a18007dce41e76b0a2cf00428be00057cb576aace1b79436e7096b01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c332ec797f3bb2daa80a0029d010743968ecf6e2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 25 Mar 2026 11:07:38 +0000 Subject: [PATCH 469/697] chore(deps): update fedora 44 repos_image to fedora-44-20260325.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 10f1921..3dfa6e1 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 5142a38..dc3987e 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 2b0c3be..f65b434 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index ea7efc5..c94e3bf 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index a81ce1f..edac2b5 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 3416a0d..ac8e9da 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 3e150a1..54b33df 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index a034d81..e070160 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index d9a7ef2..24e31e9 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260324.n.0@sha256:2cee9d6b78d53b58c7d05e67518ee6e9b462ef09c4dbbbb7cdb5067296872ce4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e297c672de032f28b6c1f21fafa8a73bafc299f6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 26 Mar 2026 09:07:15 +0000 Subject: [PATCH 470/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260326.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 91ab08f..0960f98 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 132e8cc..9c03b09 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 8047fba..2c823c7 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index fb15b88..d88f19c 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 6fa24d6..41d62e9 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 53f9658..460f956 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 2ec9a4b..c9d8524 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 9a7d3a3..4d0e225 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 391e0af..05af7ee 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 2a05ab5..64ffbc0 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 10b86a3..8311301 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index d63e138..9535a28 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260325.0@sha256:fc5d6cf7a20cec65ad6722a68d1e2bf7b0c5585638b6ce1615d50932b0991800 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e0225eb75125430b59de1d7a578f8e36a071c778 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 26 Mar 2026 12:06:48 +0000 Subject: [PATCH 471/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260326.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 422dfc1..3f1d446 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5b8e3e6..5517155 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 6d3e19d..ac14b3f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ef0d50d..a0c2fc1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 759e631..cdfefb6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 7a600b1..2b233a8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 21eb71c..ecdd824 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 7a8de30..5b8acc1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 9d3e538..f1a87e5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260325.n.0@sha256:9eb708f5e7ba925dab805410a7f7446018324d702ff862fdf519bede779f1ccd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0393a471809bc7341676b285cef3a6ce1990ed3e Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 26 Mar 2026 22:32:16 -0400 Subject: [PATCH 472/697] standard: add chunkah package This enables content-based layer splitting as an alternative to rpm-ostree's rechunker, both for the base image build itself and for downstream users building derived images. Assisted-by: OpenCode (Claude Opus 4.6) --- standard/manifest.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/standard/manifest.yaml b/standard/manifest.yaml index fdd3f75..6215270 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -45,6 +45,8 @@ packages: - python3-rpm # Used by admins interactively - man-db + # Content-based container layer splitting for rechunking + - chunkah # These are random architecture-specific packages packages-x86_64: From a1dec744baa6880be574bde16a094106dba43414 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 27 Mar 2026 09:06:49 +0000 Subject: [PATCH 473/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260327.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 3f1d446..587a96b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5517155..e2a9bac 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index ac14b3f..ed0be08 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a0c2fc1..be8060c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index cdfefb6..9e62e44 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 2b233a8..d4a4654 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ecdd824..e134e0a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 5b8acc1..1c275c9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index f1a87e5..d4710c3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260326.n.0@sha256:3c2cc1cde3689f0600870003f1e69812d0166f791c1c7c524ce53e21f5869008 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7720cd3a7c00d4583bcc0dc92f1af10c0b837a4f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 30 Mar 2026 02:08:09 +0000 Subject: [PATCH 474/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260329.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 587a96b..4ea80ff 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index e2a9bac..f9e64bf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index ed0be08..2cef1c4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index be8060c..19e9b11 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9e62e44..753286d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index d4a4654..10e7544 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e134e0a..d3e19c5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 1c275c9..4937c0e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index d4710c3..e5919bc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260327.n.0@sha256:0f66731f507af3f2ede8fb19228e5216c3ea829fdab7ee2313d949e35d687ffc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8362abca256572ee31059fe8bcc5582a7d13b767 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 26 Mar 2026 22:32:58 -0400 Subject: [PATCH 475/697] bootc-base-imagectl/rechunk: add --chunkah mode Add a --chunkah flag to bootc-base-imagectl rechunk that uses chunkah instead of rpm-ostree for content-based layer splitting. Also wraps the tricky parts around pruning the OSTree repo and labels. Assisted-by: OpenCode (Claude Opus 4.6) --- bootc-base-imagectl | 55 ++++++++++++++++++++++++++++-------------- bootc-base-imagectl.md | 47 +++++++++++++++++++++++++++++++----- 2 files changed, 78 insertions(+), 24 deletions(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 33f832a..2798273 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -135,22 +135,40 @@ def run_build_rootfs(args): shutil.copy('/' + f, dst) def run_rechunk(args): - argv = [ - 'rpm-ostree', - 'experimental', - 'compose', - 'build-chunked-oci'] - if args.max_layers is not None: - argv.append(f"--max-layers={args.max_layers}") - argv.extend(['--bootc', - '--format-version=1', - f'--from={args.from_image}', - f'--output=containers-storage:{args.to_image}']) - try: - subprocess.run(argv, check=True) - except subprocess.CalledProcessError as e: - print(f"Error executing command: {e}") - sys.exit(1) + if args.chunkah: + argv = ['chunkah', 'build', '--rootfs=/chunkah'] + if args.max_layers is not None: + argv.append(f"--max-layers={args.max_layers}") + # Strip OSTree data and labels for bootc compatibility; see + # https://github.com/coreos/chunkah#compatibility-with-bootable-bootc-images + argv.extend(['--prune', '/sysroot/', + '--label', 'ostree.commit-', + '--label', 'ostree.final-diffid-']) + try: + subprocess.run(argv, check=True) + except subprocess.CalledProcessError as e: + print(f"Error executing command: {e}", file=sys.stderr) + sys.exit(1) + else: + if not args.from_image or not args.to_image: + print("Error: from_image and to_image are required when not using --chunkah", file=sys.stderr) + sys.exit(1) + argv = [ + 'rpm-ostree', + 'experimental', + 'compose', + 'build-chunked-oci'] + if args.max_layers is not None: + argv.append(f"--max-layers={args.max_layers}") + argv.extend(['--bootc', + '--format-version=1', + f'--from={args.from_image}', + f'--output=containers-storage:{args.to_image}']) + try: + subprocess.run(argv, check=True) + except subprocess.CalledProcessError as e: + print(f"Error executing command: {e}") + sys.exit(1) def run_list(args): d = '/' + MANIFESTDIR @@ -190,9 +208,10 @@ if __name__ == "__main__": build_rootfs.set_defaults(func=run_build_rootfs) cmd_rechunk = subparsers.add_parser('rechunk', help="Generate a new container image with split, reproducible, chunked layers") + cmd_rechunk.add_argument("--chunkah", help="Use chunkah instead of rpm-ostree (reads rootfs from /chunkah, writes OCI archive to stdout)", action='store_true') cmd_rechunk.add_argument("--max-layers", help="Configure the number of output layers") - cmd_rechunk.add_argument("from_image", help="Operate on this image in the container storage") - cmd_rechunk.add_argument("to_image", help="Output a new image to the container storage") + cmd_rechunk.add_argument("from_image", help="Operate on this image in the container storage", nargs='?') + cmd_rechunk.add_argument("to_image", help="Output a new image to the container storage", nargs='?') cmd_rechunk.set_defaults(func=run_rechunk) cmd_list = subparsers.add_parser('list', help='List available manifests') diff --git a/bootc-base-imagectl.md b/bootc-base-imagectl.md index 311bb7a..b98d01c 100644 --- a/bootc-base-imagectl.md +++ b/bootc-base-imagectl.md @@ -47,6 +47,15 @@ This command takes just two arguments: - A path to the target root filesystem which will be generated as a directory. The target should not already exist (but its parent must exist). +### Implementation + +The current implementation uses `rpm-ostree` on a manifest (treefile) +embedded in the container image itself. These manifests are not intended +to be editable directly. + +To emphasize: the implementation of this command (especially the configuration +files that it reads) are subject to change. + ## Using bootc-base-imagectl rechunk This operation is strongly related to `build-rootfs` but is also orthogonal; @@ -95,6 +104,35 @@ tree (hence removed/overridden files are handled), and then splits it up Further, because bootc uses OSTree today, and OSTree canonializes all timestamps to zero on the client side, this tool does that at build time. +### Using chunkah instead of rpm-ostree + +The `--chunkah` flag switches rechunk to use [chunkah] instead of +rpm-ostree for layer splitting. In this mode, chunkah reads the rootfs +from `/chunkah` (its default) and writes an OCI archive to stdout. +The `from_image` and `to_image` positional arguments are not used. +The `--max-layers` option is respected and passed through to chunkah. + +This mode automatically passes `--prune /sysroot/` to strip OSTree data +and `--label ostree.commit-` / `--label ostree.final-diffid-` to remove +OSTree-specific labels. In other words, this produces plain OCI bootc images +without any OSTree content. + +To rechunk an existing image using chunkah: + +``` +IMG=quay.io/exampleos/exampleos:latest +podman run --rm --mount=type=image,src=$IMG,dest=/chunkah \ + -e CHUNKAH_CONFIG_STR="$(podman inspect $IMG)" \ + quay.io/fedora/fedora-bootc:rawhide \ + /usr/libexec/bootc-base-imagectl rechunk --chunkah | podman load +``` + +The `CHUNKAH_CONFIG_STR` environment variable passes the original +image's metadata (labels, environment, command, etc.) to chunkah so +that it is retained in the rechunked output. + +[chunkah]: https://github.com/coreos/chunkah + ### Other options `bootc-base-imagectl list` will enumerate available configurations that @@ -102,12 +140,9 @@ can be selected by passing `--manifest` to `build-rootfs`. ### Implementation -The current implementation uses `rpm-ostree` on a manifest (treefile) -embedded in the container image itself. These manifests are not intended -to be editable directly. - -To emphasize: the implementation of this command (especially the configuration -files that it reads) are subject to change. +The default rechunking implementation also uses `rpm-ostree`. The `--chunkah` +mode uses [chunkah] instead, which is content-agnostic and not tied to +rpm-ostree. ### Cross builds and the builder image From 0bf47996ecf22401f47eeebd2fd77fee2ba5f9f3 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 26 Mar 2026 22:33:31 -0400 Subject: [PATCH 476/697] Containerfile: add chunked build target Add optional rechunker and chunked stages that use chunkah for content-based layer splitting. This allows folding the splitting step into the build step. Through some build arg and redirection trickery, this leaves the unchunked path functionally identical. Assisted-by: OpenCode (Claude Opus 4.6) --- CONTRIBUTING.md | 13 +++++++++++++ Containerfile | 24 +++++++++++++++++++----- Justfile | 5 ++++- 3 files changed, 36 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b938ef9..1695c09 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,3 +22,16 @@ FEDORA_VERSION=43 just test # different Fedora version BUILDER=podman just build # use podman instead of buildah just ci # full CI run (validate + test all tiers) ``` + +## Building a split image + +The Containerfile supports building a split (content-based layered) +image using [chunkah](https://github.com/coreos/chunkah) via the +`chunked` build target: + +```bash +just build --chunkah +``` + +Extra arguments can be passed to chunkah via the `CHUNKAH_ARGS` build +arg (e.g. `BUILDER_EXTRA='--build-arg CHUNKAH_ARGS="--max-layers 128"' just build --chunkah`). diff --git a/Containerfile b/Containerfile index 90bad06..1aa0330 100644 --- a/Containerfile +++ b/Containerfile @@ -2,9 +2,11 @@ # nested containerization, so you must build with e.g. # podman build --security-opt=label=disable --cap-add=all --device /dev/fuse <...> -# NOTE: This container build will output a single giant layer. It is strongly recommended -# to run the "rechunker" on the output of this build, see -# https://coreos.github.io/rpm-ostree/experimental-build-chunked-oci/ +# NOTE: This container build will output a single giant layer. You can either +# run the "rechunker" on the output of this build (see bootc-base-imagectl.md), +# or build the split version directly with `just build --chunkah` +# (or if using podman/buildah directly, add `--build-arg FINAL=chunked +# --skip-unused-stages=false -v $PWD:/run/src`). # Override this repos container to control the base image package versions. For # example, podman build --from=quay.io/fedora/fedora:41 will get you a system @@ -14,8 +16,10 @@ # since konflux doesn't yet support --from. ARG REPOS_IMAGE=quay.io/fedora/fedora:rawhide ARG BUILDER_IMAGE=quay.io/fedora/fedora:rawhide -FROM $REPOS_IMAGE as repos +# Either 'unchunked' or 'chunked'. Determines whether we take the chunkah path. +ARG FINAL=unchunked +FROM $REPOS_IMAGE as repos # BOOTSTRAPPING: This can be any image that has rpm-ostree, selinux-policy-targeted # and python3 (for bootc-base-imagectl). FROM $BUILDER_IMAGE as builder @@ -54,9 +58,19 @@ install -m 0755 -t /usr/libexec ./bootc-base-imagectl EORUN # This pulls in the rootfs generated in the previous step -FROM scratch +FROM scratch AS unchunked COPY --from=builder /target-rootfs/ / +FROM builder AS rechunker +RUN dnf -y install chunkah +ARG CHUNKAH_ARGS="" +RUN --mount=from=unchunked,src=/,target=/chunkah,ro \ + --mount=type=bind,target=/run/src,rw \ + /usr/libexec/bootc-base-imagectl rechunk --chunkah ${CHUNKAH_ARGS} \ + > /run/src/out.ociarchive +FROM oci-archive:out.ociarchive AS chunked + +FROM $FINAL LABEL containers.bootc 1 # This is an ad-hoc way for us to reference bootc-image-builder in # a way that in theory client tooling can inspect and find. Today diff --git a/Justfile b/Justfile index 3c954d9..eec0a0a 100644 --- a/Justfile +++ b/Justfile @@ -23,6 +23,7 @@ _build_cmd := builder + " build" _tag := image + if tier == "standard" { "" } else { ":" + tier } _base_image := "quay.io/fedora/fedora:" + fedora_version _version_args := if fedora_version == "rawhide" { "" } else { "--build-arg=REPOS_IMAGE=" + _base_image + " --build-arg=BUILDER_IMAGE=" + _base_image } +_chunkah_args := "--build-arg FINAL=chunked --skip-unused-stages=false -v " + justfile_directory() + ":/run/src" # ============================================================================ # Core targets @@ -30,10 +31,12 @@ _version_args := if fedora_version == "rawhide" { "" } else { "--build-arg=REPOS # Build the container image [group('core')] -build: _check-tier +[arg("chunkah", long, value="true")] +build chunkah="": _check-tier {{_build_cmd}} -f Containerfile --no-cache \ -t {{_tag}} {{priv_args}} \ {{_version_args}} {{builder_extra}} \ + {{if chunkah != "" { _chunkah_args } else { "" }}} \ --build-arg=MANIFEST=fedora-{{tier}} . # Build and test From b84adb68886a18753cd94fe913656ef33113aed1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 26 Mar 2026 11:06:36 +0000 Subject: [PATCH 477/697] chore(deps): update fedora 44 repos_image to fedora-44-20260326.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 3dfa6e1..0c2d3b8 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index dc3987e..0aebc84 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index f65b434..cb3092c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index c94e3bf..494ea04 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index edac2b5..3a6e62a 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index ac8e9da..ffc4da8 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 54b33df..d186873 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index e070160..e375463 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 24e31e9..3a554bd 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260325.n.0@sha256:eb27b04483b21234dbc07348edc0c46d150dcb7379f5c7fdbe21e88fb0ecfb5d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 632af0c0422fb9fb36c269ecddce430546525bac Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 7 Apr 2026 13:06:49 +0000 Subject: [PATCH 478/697] chore(deps): update fedora 44 repos_image to fedora-44-20260407.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 0c2d3b8..dc494a5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 0aebc84..c8f56ee 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index cb3092c..6810ce1 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 494ea04..4cd2934 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 3a6e62a..6bfacd1 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index ffc4da8..d84d008 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index d186873..e363a85 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index e375463..378455c 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 3a554bd..bbbc05b 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260326.n.0@sha256:7c172c0d5febe7d98fceb806b10a91ba2a921d92062cc7f742420e6d61763ef9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 37cb3acb091ae56494f77ebd19248e07383497b0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Apr 2026 11:06:21 +0000 Subject: [PATCH 479/697] chore(deps): update fedora 44 repos_image to fedora-44-20260408.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index dc494a5..12ae9d2 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index c8f56ee..ee95c40 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 6810ce1..6bdd3ae 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 4cd2934..96811e4 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 6bfacd1..7a76cd6 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index d84d008..25e1ed6 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index e363a85..fd48ddd 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 378455c..c063c2f 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index bbbc05b..6560a64 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260407.n.0@sha256:1af99e191933afe3ef61d9cbb56d019eb4a0a96daddcfd6e2f299fa1c65eb053 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 48c689b2e91e48ee52b4059074d5fc3a4379bcb9 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Wed, 8 Apr 2026 16:20:48 -0400 Subject: [PATCH 480/697] .gitlab-ci.yml: bump Just version pin CI is failing right now because the Justfile uses things not supported by v1.40. ...At least that's what Opus thinks. We're pinning to a pretty old version anyway so let's just bump it and see if it's right. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf59be4..8be05f0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ stages: variables: BUILDER: buildah - JUST_VERSION: "1.40.0" + JUST_VERSION: "1.49.0" .build-image: stage: build From 6630413f225568d990c619db4bd05e85b31b7172 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Wed, 8 Apr 2026 23:04:10 -0400 Subject: [PATCH 481/697] tests/bootupd: replace jq with grep jq is not available in the minimal tier. Use grep instead to verify that the bootupd EFI has both grub2 and shim components installed. Assisted-by: OpenCode (Claude Opus 4.6) --- tests/rootfs/cases/bootupd | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/rootfs/cases/bootupd b/tests/rootfs/cases/bootupd index b03840b..7834227 100755 --- a/tests/rootfs/cases/bootupd +++ b/tests/rootfs/cases/bootupd @@ -1,7 +1,5 @@ #!/bin/bash set -xeuo pipefail -# Verify the bootupd EFI has more than one component installed -versions=$(cat /usr/lib/bootupd/updates/EFI.json | jq -r .version | tr ',' ' ') -array=($versions) -length=${#array[*]} -[ $length -gt 1 ] +# Verify the bootupd EFI has both grub2 and shim components installed. +# (Note we don't use jq here because that's not available in minimal.) +grep -q 'grub2-.*,shim-' /usr/lib/bootupd/updates/EFI.json From 48c74e6793f63f48cd9e76b7be59110c339c3a02 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 9 Apr 2026 11:06:51 +0000 Subject: [PATCH 482/697] chore(deps): update fedora 44 repos_image to fedora-44-20260409.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 12ae9d2..3c0f043 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index ee95c40..ec8b99f 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 6bdd3ae..6d947e8 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 96811e4..7e4f4f8 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 7a76cd6..322a2c1 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 25e1ed6..c9c0e60 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index fd48ddd..5965082 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index c063c2f..18f2916 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 6560a64..1b3aa66 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260408.n.0@sha256:e37759426f86648f7fd383a7c27749c46e77d0b9b0fafd12d3d1f209f9b762f5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 5d83941381859e5cfc6124bad58ade573dd46f2a Mon Sep 17 00:00:00 2001 From: Pragyan Poudyal Date: Fri, 10 Apr 2026 13:39:16 +0530 Subject: [PATCH 483/697] Enable `bootloader-update.service` for >= CentOS9 MR https://gitlab.com/fedora/bootc/base-images/-/merge_requests/257 added `bootloader-update.service` for >= F43, we need the same for "-ge CentOS9" before having this in Image Mode RHEL Also, move the preset to a separate file addressing comment https://gitlab.com/fedora/bootc/base-images/-/merge_requests/257#note_2683334416 --- minimal/systemd-presets.yaml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/minimal/systemd-presets.yaml b/minimal/systemd-presets.yaml index fee068a..4f0d3a4 100644 --- a/minimal/systemd-presets.yaml +++ b/minimal/systemd-presets.yaml @@ -9,16 +9,27 @@ postprocess: # https://github.com/coreos/fedora-coreos-tracker/issues/1896#issuecomment-2848251507 disable dnf-makecache.timer EOF - # Enable bootloader-update.service on F43+. + # Enable bootloader-update.service on F43+ and CentOS9+ # https://github.com/coreos/fedora-coreos-tracker/issues/1468#issuecomment-2996654547 # https://fedoraproject.org/wiki/Changes/AutomaticBootloaderUpdatesBootc - | #!/bin/bash set -xeuo pipefail source /usr/lib/os-release - if [ $ID == "fedora" ] && [ ${VERSION_ID} -ge 43 ]; then - echo "enable bootloader-update.service" >> /usr/lib/systemd/system-preset/85-bootc.preset - fi + + preset_file_name=/usr/lib/systemd/system-preset/85-bootc-bootloader-update.preset + + case "$ID" in + fedora) + [ "$VERSION_ID" -ge 43 ] && echo "enable bootloader-update.service" >> "$preset_file_name" + ;; + + centos) + [ "$VERSION_ID" -ge 9 ] && echo "enable bootloader-update.service" >> "$preset_file_name" + ;; + + *) ;; + esac # Undo RPM scripts enabling units; we want the presets to be canonical # https://github.com/projectatomic/rpm-ostree/issues/1803 - | From 2d82b10192918b871f28edb824f303f197ff08f0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 10 Apr 2026 12:06:22 +0000 Subject: [PATCH 484/697] chore(deps): update fedora 44 repos_image to fedora-44-20260410.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 3c0f043..65febaa 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index ec8b99f..de904ce 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 6d947e8..d820843 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 7e4f4f8..a170f09 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 322a2c1..083c66f 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index c9c0e60..11d00ce 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 5965082..d486208 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 18f2916..9e7d81d 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 1b3aa66..fa87f28 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260409.n.0@sha256:5ed4ba317ebb24e455fa7cd2b3b3c7ecc5a981054cf74eb512efa274dd4f9847 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From bba73e1adc54e3cd2c37669f5bafaaab74560b8c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 13 Apr 2026 02:17:17 +0000 Subject: [PATCH 485/697] chore(deps): update fedora 44 repos_image to fedora-44-20260412.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 65febaa..5df457e 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index de904ce..9c3a6ac 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index d820843..862a9cb 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index a170f09..aed8f2b 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 083c66f..ced1394 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 11d00ce..98ddadc 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index d486208..bde9f93 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 9e7d81d..87373a0 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index fa87f28..558f0b2 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260410.n.0@sha256:203701a420bcada8de46d77847caa8abe67e934a50c4ea992a0875c9d097c42e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1c61a7ddcc7849970345e1dc82d07018128b1aff Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 13 Apr 2026 15:08:00 +0000 Subject: [PATCH 486/697] chore(deps): update fedora 44 repos_image to fedora-44-20260413.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 5df457e..9645c43 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 9c3a6ac..1710ac1 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 862a9cb..2dec589 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index aed8f2b..23dc0bc 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index ced1394..d18101f 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 98ddadc..483402a 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index bde9f93..add6744 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 87373a0..00cec94 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 558f0b2..b333f05 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260412.n.0@sha256:0044da2b983f4d28900579922b373df2b423928fb9c8b42cc64925cec585f792 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9bf83ac89bc9dfb6d13a1c542b25432d41f30fc7 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 20 Apr 2026 15:36:33 -0400 Subject: [PATCH 487/697] standard: move chunkah to fedora-only manifest The chunkah package is not yet available in CentOS Stream/RHEL, so having it in the shared standard/manifest.yaml breaks backports (see https://gitlab.com/redhat/centos-stream/containers/bootc/-/merge_requests/1034). Move it to the top-level standard.yaml which is Fedora-specific and not backported. Assisted-by: OpenCode (Claude Opus 4.6) --- standard.yaml | 4 ++++ standard/manifest.yaml | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/standard.yaml b/standard.yaml index 4dd7d72..debffcd 100644 --- a/standard.yaml +++ b/standard.yaml @@ -5,3 +5,7 @@ include: packages: # Make Ansible "package" builtin work by default - python3-libdnf5 + # Content-based container layer splitting for rechunking + # Note we should be able to move this back to the base standard/manifest.yaml + # once chunkah is in CentOS Stream and RHEL. + - chunkah diff --git a/standard/manifest.yaml b/standard/manifest.yaml index 6215270..fdd3f75 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -45,8 +45,6 @@ packages: - python3-rpm # Used by admins interactively - man-db - # Content-based container layer splitting for rechunking - - chunkah # These are random architecture-specific packages packages-x86_64: From 225d031ebc067276fd765fdd1e2526146e0c9c07 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 27 Apr 2026 15:06:43 +0000 Subject: [PATCH 488/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260427.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 4ea80ff..749e01a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f9e64bf..795f0e7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 2cef1c4..5567681 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 19e9b11..9e55b24 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 753286d..28544d8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 10e7544..ed9df39 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d3e19c5..d471fbf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 4937c0e..34650a4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index e5919bc..bf6fba5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260329.n.0@sha256:e4eab547e04cf62c7cfd8c0960ce00afc396a371b213c383c1cb99b22dbd93ab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c33c548ca98783c0c0b3271f3de76e179acbfac6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 27 Apr 2026 16:07:03 +0000 Subject: [PATCH 489/697] chore(deps): update fedora rawhide repos_image to ba3fc41 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 749e01a..79cf36d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 795f0e7..ac73b52 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 5567681..5e7c4a8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9e55b24..cb4539f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 28544d8..06e8366 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ed9df39..ac208ce 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d471fbf..3417c9f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 34650a4..1be1a47 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index bf6fba5..ce6bc5c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:a414b2c1a2995d99347637b392f38f7322b0bd8f5a49e899860bf24785ded706 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cc1983dbbcb73326ced95a538fad6a22ca4db2b2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 10:06:58 +0000 Subject: [PATCH 490/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260428.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index cd3833d..ebfd4f9 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 577f79a..2edd8d1 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 7e1d705..8957466 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index b9790d6..7a56b29 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index e74d07f..6522371 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 79e41a5..99239d6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index cff3c25..af81fc7 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index eeca4b4..5430334 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 3694b62..3e86535 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 0e2ed0e..f019f8d 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0c4fe41..0f9e584 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 2ad8693..b1b32f4 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260324.0@sha256:7d4befc67d518bdbd9cda503c69edac5159b715b7213a4a4856c51ef50a1cd49 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b18707752b9e87a2a310b2dae03ab60029e121e1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 10:07:18 +0000 Subject: [PATCH 491/697] chore(deps): update fedora 44 repos_image to fedora-44-20260425.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 9645c43..8120e5b 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 1710ac1..58bb1be 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 2dec589..f7334a7 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 23dc0bc..c60621a 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index d18101f..26117a8 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 483402a..f132aac 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index add6744..33a242f 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 00cec94..403f7a1 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index b333f05..1f0e559 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260413.n.0@sha256:2b8a6e57aacf60d608f2fad0f6fd64a220f5efd1ca4371218fbee8991abcee28 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2efae7c465f73f68da25c193bf6ac87c58882570 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 16:08:56 +0000 Subject: [PATCH 492/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260428.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 79cf36d..0413804 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index ac73b52..c85210c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 5e7c4a8..bdeb7b8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index cb4539f..7fc67f9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 06e8366..ec96dda 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ac208ce..14dddf7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3417c9f..565d185 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 1be1a47..6add755 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ce6bc5c..03b4699 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260427.n.0@sha256:ba3fc41a6010ca33b5924a7df1f4b955a007125ea7954704bfcd754139bd1293 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 45857d1a1576284153ef311281ef46638b818b06 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 10:06:35 +0000 Subject: [PATCH 493/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260428.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 0960f98..7d4e01f 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 9c03b09..4ea1121 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 2c823c7..1d3e464 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index d88f19c..6351002 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 41d62e9..4b8fe63 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 460f956..3d03136 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index c9d8524..ce97335 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 4d0e225..11932e3 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 05af7ee..14ae65b 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 64ffbc0..8471107 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 8311301..4b446d1 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 9535a28..9bef64e 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260326.0@sha256:35c58382b07a89f79229c2609b0798807fc8c6b4c6925a7a9a2a4166c5a0d3d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c8d2be6ef7034c0a585c902d2c69be21798f548d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 08:06:45 +0000 Subject: [PATCH 494/697] chore(deps): update fedora 42 bootc build pipeline to 44d0e80 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 7d4e01f..7e20675 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 4ea1121..607819c 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 1d3e464..aaac29d 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 6351002..7056082 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 4b8fe63..e11ed1a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 3d03136..bdf43e1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index ce97335..5020abf 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 11932e3..186f8db 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 14ae65b..8f369ef 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 8471107..97519e1 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 4b446d1..5ff736d 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 9bef64e..7ead9df 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 1ff0acbb150168c009b66b0fe4fa0ebd35a5cc27 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 12:07:48 +0000 Subject: [PATCH 495/697] chore(deps): update fedora 43 bootc build pipeline to 44d0e80 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index ebfd4f9..288a3cb 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 2edd8d1..ca616ab 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 8957466..5bb2542 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 7a56b29..2cd7d29 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6522371..da88861 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 99239d6..eea06f3 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index af81fc7..15ed6e8 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 5430334..f83443f 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 3e86535..f024653 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index f019f8d..4550672 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0f9e584..c95e05a 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index b1b32f4..e9b9c5a 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From fb58021ba03845c971235e86051e422997ec1ef6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 08:06:51 +0000 Subject: [PATCH 496/697] chore(deps): update fedora 44 bootc build pipeline to 44d0e80 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-iot-push.yaml | 2 +- .tekton/fedora-bootc-44-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-44-iot-pull-request.yaml b/.tekton/fedora-bootc-44-iot-pull-request.yaml index 8bc6aac..e184549 100644 --- a/.tekton/fedora-bootc-44-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-44-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-iot-push.yaml b/.tekton/fedora-bootc-44-iot-push.yaml index ed336ee..3d39c40 100644 --- a/.tekton/fedora-bootc-44-iot-push.yaml +++ b/.tekton/fedora-bootc-44-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-iot-renovate-push.yaml b/.tekton/fedora-bootc-44-iot-renovate-push.yaml index 7512ab2..5516a9f 100644 --- a/.tekton/fedora-bootc-44-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 8120e5b..6c46084 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 58bb1be..cf5017b 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index f7334a7..e28ef86 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index c60621a..4ad7773 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 26117a8..3d3d60d 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index f132aac..eec6949 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 33a242f..75c32b8 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 403f7a1..a220b7c 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 1f0e559..cf6c8d0 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 7d095577c594cc66889c2c15bb0dc9c3023fbaad Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Apr 2026 08:06:55 +0000 Subject: [PATCH 497/697] chore(deps): update fedora rawhide bootc build pipeline to 44d0e80 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index 467af1a..f34bb4a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index 63497bf..d060998 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml index a1b7032..e3dca4a 100644 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 79cf36d..f3de27d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index ac73b52..5a77854 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 5e7c4a8..458f580 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index cb4539f..1be63f4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 06e8366..30fd537 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ac208ce..12c11f5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3417c9f..56b3628 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 1be1a47..70fdc67 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ce6bc5c..c530b4d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2678dd50429012f562c349ad52bce30f4bba3a0f6832b874c303e418d5b8a4ae + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 6493dc2601f19b5ee7101ef246b6dd1fb929d9fb Mon Sep 17 00:00:00 2001 From: jcapitao-rh Date: Tue, 28 Apr 2026 14:15:09 +0200 Subject: [PATCH 498/697] fix(postprocess): fix shell crash in bootloader preset logic The use of the `&&` operator combined with `set -e` caused the postprocess script to exit with code 1 when `$VERSION_ID` was less than 43. Fixes: https://gitlab.com/fedora/bootc/base-images/-/merge_requests/456 Closes: https://gitlab.com/fedora/bootc/base-images/-/work_items/79 --- minimal/systemd-presets.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/minimal/systemd-presets.yaml b/minimal/systemd-presets.yaml index 4f0d3a4..6bedd4f 100644 --- a/minimal/systemd-presets.yaml +++ b/minimal/systemd-presets.yaml @@ -21,13 +21,15 @@ postprocess: case "$ID" in fedora) - [ "$VERSION_ID" -ge 43 ] && echo "enable bootloader-update.service" >> "$preset_file_name" + if [ "$VERSION_ID" -ge 43 ]; then + echo "enable bootloader-update.service" >> "$preset_file_name" + fi ;; - centos) - [ "$VERSION_ID" -ge 9 ] && echo "enable bootloader-update.service" >> "$preset_file_name" + if [ "$VERSION_ID" -ge 9 ]; then + echo "enable bootloader-update.service" >> "$preset_file_name" + fi ;; - *) ;; esac # Undo RPM scripts enabling units; we want the presets to be canonical From 2bf11e14f3261765df59b92ea33d0bc1eb53023b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 29 Apr 2026 04:06:37 +0000 Subject: [PATCH 499/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260429.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 288a3cb..f4297c5 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index ca616ab..e6a9b67 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 5bb2542..a70514c 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 2cd7d29..eef0ab9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index da88861..b4c2085 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index eea06f3..9b47373 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 15ed6e8..54f0e3b 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index f83443f..a491c7d 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index f024653..8948292 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 4550672..a0279f0 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index c95e05a..59a4c4b 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index e9b9c5a..a5ea86b 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260428.0@sha256:d40cc5c32673b8af0eacb5492150ed185fa228b82dd3edba3f376ed7684116ec + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 90c759cf1f05be20625e900b5ecabd303004f3f4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 29 Apr 2026 07:08:30 +0000 Subject: [PATCH 500/697] chore(deps): update fedora 43 repos_image to fe6508b Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index f4297c5..02a40d9 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e6a9b67..5d05e40 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index a70514c..5daadc0 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index eef0ab9..dcac834 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index b4c2085..a61ee9b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 9b47373..0be37b2 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 54f0e3b..1e22202 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index a491c7d..d3e301d 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 8948292..fd4301a 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index a0279f0..3946ba0 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 59a4c4b..466acdc 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index a5ea86b..e2f3133 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:01b399618b241f0c2a56502f6d286ab169736479b5d6f20c39cdf11daca8a50b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From acc22fe9ab999a19bcb38f5dd13c54189ddccab7 Mon Sep 17 00:00:00 2001 From: jcapitao-rh Date: Wed, 29 Apr 2026 10:00:27 +0200 Subject: [PATCH 501/697] .tekton: fix REPOS_IMAGE tag We are using the wrong tag, so Renovate does not update to the last digest. This patch updates it to Fedora-44-updates-* which follows the updates composes (not the base one). --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 6c46084..dfc9603 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index cf5017b..cf44aaa 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index e28ef86..ee48cf7 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 4ad7773..8f2e5e5 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 3d3d60d..e0d971a 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index eec6949..425f349 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 75c32b8..6d772a5 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index a220b7c..23bae8c 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index cf6c8d0..a7b1b5d 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260425.0@sha256:8a25341a5284ffc9353486c20b328b7da7220c5d15b97963f5a4b43316ecd411 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 8fbbf68176ab4de68306c8713d72eed745d408ae Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 29 Apr 2026 08:06:33 +0000 Subject: [PATCH 502/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260429.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ddf42e1..bc4ef96 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 71b056f..a2718c0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 678fe3a..3e9025b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 7ff85db..a79d2c1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f10d6fb..4492668 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 84ea3eb..34d48b6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 677e0d6..fcda3f1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index d19b078..ecee9ec 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 891b033..3d85e65 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260428.n.0@sha256:945c5c65b52b0da65ae8bc66c3f826790187667da6917a095c85d9006741ba01 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 16ff544a029a1466d296eb69b51f90fddec0909e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 29 Apr 2026 11:07:30 +0000 Subject: [PATCH 503/697] chore(deps): update fedora rawhide repos_image to 79a401e Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index bc4ef96..504f4e6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a2718c0..4ba6f14 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 3e9025b..221d2a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a79d2c1..4a12225 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 4492668..62f055a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 34d48b6..98a522c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index fcda3f1..3968119 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index ecee9ec..f97e3ba 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 3d85e65..0a67f91 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:c43d0c15eaf3a37ada81b765bbc22269d631a521b83342b326a9abad8442e8fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1bf29a2a43829ddeeb35a0d3b30355c235f3119d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 02:07:09 +0000 Subject: [PATCH 504/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260430.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index dfc9603..40e8d57 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index cf44aaa..6f14975 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index ee48cf7..56c2395 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 8f2e5e5..57dcc10 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index e0d971a..21760ba 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 425f349..bfb6f6c 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 6d772a5..5fa6088 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 23bae8c..4264e8e 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index a7b1b5d..0b3080f 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260429.0@sha256:9b438a977c3eeb3e98b24ffbd1e262227a656692411ca0084b4b67fa10992ce6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9d40a289e0164ef413461a8c0ead96329641768a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 03:06:09 +0000 Subject: [PATCH 505/697] chore(deps): update fedora 42 repos_image to fedora-42-updates-20260430.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 7e20675..3652cb9 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index 607819c..b72b7a3 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index aaac29d..2abf251 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 7056082..6175918 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index e11ed1a..72d04c2 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index bdf43e1..595e68b 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 5020abf..6c54b0c 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 186f8db..1e26e58 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index 8f369ef..ae3cc24 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 97519e1..7f5a0a4 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 5ff736d..0892a64 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index 7ead9df..a374fb1 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260428.0@sha256:08607f199d0d7b912de586d989922389563f524e69da2ca1c1bc14973fef5c87 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a7378afa6755bbce32d976525b7130dec24038bf Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 03:06:29 +0000 Subject: [PATCH 506/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260430.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 02a40d9..0d1d3e2 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 5d05e40..ba29229 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 5daadc0..d8996e4 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index dcac834..4157d8e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index a61ee9b..987ea84 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 0be37b2..3761f1c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 1e22202..05bfc73 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d3e301d..0257f51 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index fd4301a..82125ed 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 3946ba0..b358ccf 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 466acdc..6bd211a 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index e2f3133..6be873f 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260429.0@sha256:fe6508b32f039af59b6f231090848842cda1aefaec93836e1b9271de2c70af8e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a958562585bd9ea8fc5260725c467a53b6b9998e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 04:06:38 +0000 Subject: [PATCH 507/697] chore(deps): update fedora 44 repos_image to 36f4f7f Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 40e8d57..b2be2e2 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 6f14975..c615ae1 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 56c2395..486d1f8 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 57dcc10..859fe2a 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 21760ba..5a4e9cc 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index bfb6f6c..7b6c73c 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 5fa6088..b897c5c 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 4264e8e..1031a07 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 0b3080f..03a53cf 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:7333bda6864d85642ccdcd05500e1e6ace6670f6ccc9d8ea16c6240419a91ec0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 3a3f2dbf4aef5d546504c419450f11fa914f16a2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 08:06:37 +0000 Subject: [PATCH 508/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260430.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 504f4e6..aae3525 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 4ba6f14..5d95059 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 221d2a1..3d654c6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 4a12225..1add8c0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 62f055a..a12e0cf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 98a522c..cae3f02 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3968119..82999a8 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f97e3ba..92b47fb 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 0a67f91..41f604e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260429.n.0@sha256:79a401ec31b547e08ad988e2db2d7e9e50f392f4510b146042d2bcf4e8934c40 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1c26f928a8955b7fefd327fc52efdbb554d89a83 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 13:22:29 +0000 Subject: [PATCH 509/697] chore(deps): update fedora 42 repos_image to 48bac01 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-iot-push.yaml | 2 +- .tekton/fedora-bootc-42-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-minimal-push.yaml | 2 +- .tekton/fedora-bootc-42-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-42-standard-push.yaml | 2 +- .tekton/fedora-bootc-42-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml index 3652cb9..c68375b 100644 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-42-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml index b72b7a3..1212a70 100644 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ b/.tekton/fedora-bootc-42-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml index 2abf251..0f8e525 100644 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml index 6175918..51cdd8a 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml index 72d04c2..7decfc1 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml index 595e68b..5933b86 100644 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml index 6c54b0c..013a975 100644 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-42-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml index 1e26e58..3b4b3b5 100644 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml index ae3cc24..fef625d 100644 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml index 7f5a0a4..78130b6 100644 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-42-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml index 0892a64..ca69b9f 100644 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ b/.tekton/fedora-bootc-42-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml index a374fb1..4bef40c 100644 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-42-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:8c0a4dad5b890d8186c14a44ba281004d9e41b053d85eb27b3cd2db1eae6e604 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From cbd3c9b533a82e80d56c96d8a3fcee26a18aac22 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 13:22:50 +0000 Subject: [PATCH 510/697] chore(deps): update fedora 43 repos_image to fa140e4 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 0d1d3e2..1ccf94f 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index ba29229..0a6fdea 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index d8996e4..fd957aa 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 4157d8e..abfb410 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 987ea84..8964168 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 3761f1c..5a4bc96 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 05bfc73..0563ca5 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 0257f51..5151dd9 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 82125ed..557ea07 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index b358ccf..08533d9 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 6bd211a..70b0cd6 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 6be873f..65e1efb 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:383d741fd0d58e9870120d6b994abac6cfdc8617e29e1674313b05fa6d67479b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b0e8a2cac4455934a454fe0368799e116d6c4b07 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 30 Apr 2026 14:08:06 +0000 Subject: [PATCH 511/697] chore(deps): update fedora rawhide repos_image to 55f61b4 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index aae3525..47fe046 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5d95059..6308191 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 3d654c6..b965256 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1add8c0..1b128f1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index a12e0cf..67bb829 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index cae3f02..9d54662 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 82999a8..302ba24 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 92b47fb..847a17d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 41f604e..09050ba 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:467d5aa8c7c81265812fdca01bd29e8b693bd497cd1b7f5e874025449fc855f9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b1f6ab0085ec4bad2e9223e0c3cd89554b251ee3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 4 May 2026 19:10:16 +0000 Subject: [PATCH 512/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260504.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 1ccf94f..f160859 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 0a6fdea..f31709e 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index fd957aa..b1a9aa5 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index abfb410..9130905 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 8964168..691de4d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 5a4bc96..ad0328e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 0563ca5..3d83b65 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 5151dd9..d85bc71 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 557ea07..a4ee04c 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 08533d9..bb0989d 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 70b0cd6..8520c2d 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 65e1efb..2393949 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260430.0@sha256:fa140e45bf987c4a9b8fe093eb1a726cdc7a5a26dd6e1b4bfdfa3346e361f173 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2571fdfd2742137510d72612eed33a95e626255e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 4 May 2026 20:10:12 +0000 Subject: [PATCH 513/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260504.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index b2be2e2..0041719 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index c615ae1..287d32a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 486d1f8..fb95cb2 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 859fe2a..7ddc388 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 5a4e9cc..e8ba1c2 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 7b6c73c..903bc30 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index b897c5c..942bcad 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 1031a07..2602899 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 03a53cf..933663d 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260430.0@sha256:36f4f7facc2561ede7fb39db54e57010491271c11af91d8b3c622734aecb66e8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 24083c0e61f20f1cba946b9c44fc5b3462e377e9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 4 May 2026 20:10:35 +0000 Subject: [PATCH 514/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260504.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 47fe046..bcc3858 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6308191..0dd33bc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index b965256..c3e5f70 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1b128f1..7bd136a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 67bb829..3fe7904 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 9d54662..ad06541 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 302ba24..4dc2e37 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 847a17d..d09d722 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 09050ba..937d5fc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260430.n.0@sha256:55f61b494b088c3dac2c96ea6aa11fb3adc11ea985867fbd30df9929f861446d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From e6a908cb6f739ea8453ac3a93e257845e74f5a65 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 4 May 2026 23:13:34 +0000 Subject: [PATCH 515/697] chore(deps): update fedora 43 repos_image to 126d095 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index f160859..61af059 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index f31709e..0920b32 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index b1a9aa5..0491a07 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 9130905..28738dd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 691de4d..6a37357 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index ad0328e..3753f2b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 3d83b65..ac43e39 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d85bc71..5fa0ddd 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index a4ee04c..39b6797 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index bb0989d..99b9bed 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 8520c2d..68efe2a 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 2393949..627779c 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:3a1eecfc0b92789bc3d11d449c25835c4015a0659765d12691c2b1e0e1812617 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c072b32793347ffee6d365d89fe1848f5675007f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 4 May 2026 23:13:53 +0000 Subject: [PATCH 516/697] chore(deps): update fedora 44 repos_image to f3689b3 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 0041719..fdda599 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 287d32a..13e8420 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index fb95cb2..0d5d886 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 7ddc388..c71ef2a 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index e8ba1c2..c766aac 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 903bc30..22cff1c 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 942bcad..09e1502 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 2602899..7f9251a 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 933663d..cb124e1 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:0dc498d16c9b53d599d6cf267e6bd92d638b874458844b6a757129be325c7548 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9ad60b382a181e280abd8d97a8d8e45c01d446ab Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 5 May 2026 00:09:26 +0000 Subject: [PATCH 517/697] chore(deps): update fedora rawhide repos_image to ca4e22d Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index bcc3858..38c90b2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 0dd33bc..533c9a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c3e5f70..d9cc5fa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 7bd136a..c46e661 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3fe7904..8dcf69d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ad06541..767a390 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4dc2e37..68a27fa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index d09d722..afd55c8 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 937d5fc..fb1b0d2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:12239304dfb34056d319414bd5892f60b3046119655e5ed51ccebdf6b90d2527 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 30a9deb3827adf658fa4e90becbb614b60d58b6f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 5 May 2026 07:16:37 +0000 Subject: [PATCH 518/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260505.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 61af059..1ce61a1 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 0920b32..4ccff3f 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 0491a07..bf5f0a8 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 28738dd..4eb2f5a 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6a37357..d36dba7 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 3753f2b..559595f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index ac43e39..2743e2e 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 5fa0ddd..a5a071f 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 39b6797..5ef030b 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 99b9bed..d1cbdb9 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 68efe2a..1f26857 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 627779c..fe3cf6e 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260504.0@sha256:126d0959707060890070f24309594feb826e736e00bedd958ee837d32fbfe81a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 3686d4b2ef30e0292b0f6bb5994ce14453155691 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 5 May 2026 07:16:56 +0000 Subject: [PATCH 519/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260505.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index fdda599..8724732 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 13e8420..8ff5a52 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 0d5d886..a98013c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index c71ef2a..82efa45 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index c766aac..9079624 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 22cff1c..90c6c78 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 09e1502..7d26cf4 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 7f9251a..d8fad7f 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index cb124e1..3d6bb34 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260504.0@sha256:f3689b3a4df7a60e4a46600620a78772a1ed8f27e12f3bf197bbe7b8e6f8aa09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 9166aeeb0a141ae5c3108d2ca95577c59210f3b6 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 5 May 2026 08:06:43 +0000 Subject: [PATCH 520/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260505.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 38c90b2..2845690 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 533c9a1..03a00cf 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index d9cc5fa..ad60ab6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c46e661..8b2f6ff 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 8dcf69d..2e75a2c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 767a390..732f996 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 68a27fa..61a454a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index afd55c8..dab2d52 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index fb1b0d2..3a89e06 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260504.n.0@sha256:ca4e22d9ccf6876963b4b64ea3725ebae3e00b7c880f884f8256e7d8c8180654 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6ba816006c7b81e3f5e832981189e81d45fd84f7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 5 May 2026 12:04:16 +0000 Subject: [PATCH 521/697] chore(deps): update fedora rawhide repos_image to 1fc3593 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2845690..83c9ec5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 03a00cf..342efa4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index ad60ab6..9205966 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 8b2f6ff..e6e4a23 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 2e75a2c..56b381e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 732f996..661ac8d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 61a454a..b8b749b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index dab2d52..3c64b3f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 3a89e06..be9337f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:442c45880e7c035624096a8677c579e20dfc1af139bbc90bfacd7ae8a3f08c66 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ec6e1e0363a51afdb9ef80fd805a3ab57366a19b Mon Sep 17 00:00:00 2001 From: Yasmin de Souza Date: Tue, 14 Apr 2026 15:51:40 -0300 Subject: [PATCH 522/697] Add clevis-dracut and clevis-pin-tpm2 on manifest.yaml and initramfs.yaml --- minimal/initramfs.yaml | 4 ++++ minimal/manifest.yaml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/minimal/initramfs.yaml b/minimal/initramfs.yaml index 0256d9c..2c42256 100644 --- a/minimal/initramfs.yaml +++ b/minimal/initramfs.yaml @@ -20,6 +20,10 @@ postprocess: # We want this for systemd-cryptsetup tpm2 locking add_dracutmodules+=" tpm2-tss " EOF + cat > /usr/lib/dracut/dracut.conf.d/50-bootc-clevis.conf << 'EOF' + # Clevis in initramfs for TPM2-bound LUKS (needs clevis-dracut, clevis-pin-tpm2) + add_dracutmodules+=" clevis clevis-pin-tpm2 " + EOF cat > /usr/lib/dracut/dracut.conf.d/59-altfiles.conf << 'EOF' # https://issues.redhat.com/browse/RHEL-49590 # On image mode systems we use nss-altfiles for passwd and group, diff --git a/minimal/manifest.yaml b/minimal/manifest.yaml index 443353e..b4fbb86 100644 --- a/minimal/manifest.yaml +++ b/minimal/manifest.yaml @@ -43,3 +43,6 @@ packages: - container-selinux # Needed for tpm2 bound luks - tpm2-tools + # Initramfs Clevis + TPM2 pin for LUKS auto-unlock (dracut modules wired in initramfs.yaml) + - clevis-dracut + - clevis-pin-tpm2 From be28edad73a1f4411f3bf738d1a588f27842972d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 6 May 2026 20:03:51 +0000 Subject: [PATCH 523/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260506.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 8724732..88b1a91 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 8ff5a52..a06050d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index a98013c..a34c463 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 82efa45..6c6b0e5 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 9079624..26376ca 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 90c6c78..cae0424 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 7d26cf4..146f09c 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index d8fad7f..4a3790b 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 3d6bb34..2e8a40c 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260505.0@sha256:acca83c7c7e1474f9bd116b9c3eb82e9c1500c5678e8443929f9a46526e0b821 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c780cee1530d3cd2d3d10844de18391f254c7c6a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 6 May 2026 20:04:12 +0000 Subject: [PATCH 524/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260506.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 83c9ec5..604679d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 342efa4..eea20dd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 9205966..50d9b30 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e6e4a23..39b19a5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 56b381e..cd58414 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 661ac8d..25a06f1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b8b749b..826fab2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3c64b3f..f2b13d3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index be9337f..8428702 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260505.n.0@sha256:1fc3593394af9b5107a9e527df5beee5a407ce06bfc1b9aaf4e7117fc936540a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 6a7b7cb7ee8914a248d7b51c2c25901e9d1ee2fe Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 7 May 2026 08:04:00 +0000 Subject: [PATCH 525/697] chore(deps): update fedora rawhide repos_image to 71e2e8f Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 604679d..02eb323 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index eea20dd..4ccf9d2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 50d9b30..0af5328 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 39b19a5..ed4545b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index cd58414..68154c2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 25a06f1..255cede 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 826fab2..8e41a34 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f2b13d3..3827fef 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 8428702..7c25b1d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:892c30280a8695605df2024d8f694b02f952af16d966fe1bb15ab34171ff7c47 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ed4a1a03cacc95ddc67710a1a0e95a7d2b80bf8a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 7 May 2026 08:04:49 +0000 Subject: [PATCH 526/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260507.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 1ce61a1..9f71db4 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 4ccff3f..68b29bf 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index bf5f0a8..359c5b5 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 4eb2f5a..db09059 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index d36dba7..bc5149c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 559595f..34cd86d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 2743e2e..9863f4d 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index a5a071f..c8f81b1 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 5ef030b..27567bb 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d1cbdb9..d114385 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 1f26857..5baf8f8 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index fe3cf6e..fdaea3e 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260505.0@sha256:6ebf29973f3ccc89ca26c9e6ebe23f2629daec603e4f2b4ea066071e4052fe9d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 08a496d759e1456d75f0673347474c09a2aaecff Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 7 May 2026 08:05:31 +0000 Subject: [PATCH 527/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260507.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 88b1a91..9c57012 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index a06050d..9b4d967 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index a34c463..4e3ef19 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 6c6b0e5..3068a4b 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 26376ca..40ed12d 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index cae0424..6cad8d9 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 146f09c..436672a 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 4a3790b..1ac3217 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 2e8a40c..5c61768 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260506.0@sha256:3056bdbe96884a963e84a0ced45694bd850956ca79fc64c6686112db1696d29c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa - MANIFEST=fedora-standard - name: image-expires-after value: 5d From c940c7ade247c99ebda3b94ce820f732e0a2f413 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 7 May 2026 12:03:08 +0000 Subject: [PATCH 528/697] chore(deps): update fedora 43 repos_image to 5caf8b8 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 9f71db4..8b30678 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 68b29bf..b35e761 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 359c5b5..14671df 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index db09059..a6db987 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index bc5149c..55f7dfe 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 34cd86d..cd937ca 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9863f4d..d6a1410 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index c8f81b1..5ba1e8a 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 27567bb..a70ce00 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d114385..7ed6571 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 5baf8f8..f985a9b 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index fdaea3e..28f2165 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:a3b85b3ed4716ea9775a6143f11dda61d0ca2fb05123c4412b99562bdf5edd3c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0f9864e3204e3c7151989f3e49e9e7b5c4d59e29 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 7 May 2026 12:03:50 +0000 Subject: [PATCH 529/697] chore(deps): update fedora 44 repos_image to 1084ddd Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 9c57012..62e2d59 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 9b4d967..40592ba 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 4e3ef19..de72b3f 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 3068a4b..995933a 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 40ed12d..478801d 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 6cad8d9..2dbd856 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 436672a..9312bbe 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 1ac3217..c845bcf 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 5c61768..48ee828 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:a2bb47217b7aaaf9fc9e04847246cefa481d3bba89e2c24c81d09880e0db8afa + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ba7cf627e99fc9cba2a47cd5f286eaa938ebd4ea Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 7 May 2026 16:04:58 +0000 Subject: [PATCH 530/697] chore(deps): update fedora 44 repos_image to 67201d6 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 62e2d59..b5d41be 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 40592ba..446a74d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index de72b3f..2454800 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 995933a..f4ea68a 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 478801d..b856e64 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 2dbd856..6354be3 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 9312bbe..443531d 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index c845bcf..747bcbe 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 48ee828..ce53dd2 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:1084dddc7b03645620852b05552b67897fdea81e7d0f3937cd6730822d0dba0c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 603ed2d226081277c4685ae124822f40c92199a3 Mon Sep 17 00:00:00 2001 From: Yasmin de Souza Date: Fri, 8 May 2026 10:17:45 -0300 Subject: [PATCH 531/697] Add clevis-dracut and clevis-pin-tpm2 on manifest.yaml and initramfs.yaml Change it from minimal to standard. --- minimal/initramfs.yaml | 4 ---- minimal/manifest.yaml | 3 --- standard/initramfs-full.yaml | 4 ++++ standard/manifest.yaml | 3 +++ 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/minimal/initramfs.yaml b/minimal/initramfs.yaml index 2c42256..0256d9c 100644 --- a/minimal/initramfs.yaml +++ b/minimal/initramfs.yaml @@ -20,10 +20,6 @@ postprocess: # We want this for systemd-cryptsetup tpm2 locking add_dracutmodules+=" tpm2-tss " EOF - cat > /usr/lib/dracut/dracut.conf.d/50-bootc-clevis.conf << 'EOF' - # Clevis in initramfs for TPM2-bound LUKS (needs clevis-dracut, clevis-pin-tpm2) - add_dracutmodules+=" clevis clevis-pin-tpm2 " - EOF cat > /usr/lib/dracut/dracut.conf.d/59-altfiles.conf << 'EOF' # https://issues.redhat.com/browse/RHEL-49590 # On image mode systems we use nss-altfiles for passwd and group, diff --git a/minimal/manifest.yaml b/minimal/manifest.yaml index b4fbb86..443353e 100644 --- a/minimal/manifest.yaml +++ b/minimal/manifest.yaml @@ -43,6 +43,3 @@ packages: - container-selinux # Needed for tpm2 bound luks - tpm2-tools - # Initramfs Clevis + TPM2 pin for LUKS auto-unlock (dracut modules wired in initramfs.yaml) - - clevis-dracut - - clevis-pin-tpm2 diff --git a/standard/initramfs-full.yaml b/standard/initramfs-full.yaml index 643a28c..381fe32 100644 --- a/standard/initramfs-full.yaml +++ b/standard/initramfs-full.yaml @@ -7,3 +7,7 @@ postprocess: cat > /usr/lib/dracut/dracut.conf.d/30-bootc-standard.conf << 'EOF' add_dracutmodules+=" lvm crypt fips " EOF + cat > /usr/lib/dracut/dracut.conf.d/50-bootc-clevis.conf << 'EOF' + # Clevis in initramfs for TPM2-bound LUKS (needs clevis-dracut, clevis-pin-tpm2) + add_dracutmodules+=" clevis clevis-pin-tpm2 " + EOF diff --git a/standard/manifest.yaml b/standard/manifest.yaml index fdd3f75..da2a7cb 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -43,6 +43,9 @@ packages: - sos # Make Ansible "package_facts" builtin work by default - python3-rpm + # Initramfs Clevis + TPM2 pin for LUKS auto-unlock (dracut modules wired in initramfs-full.yaml) + - clevis-dracut + - clevis-pin-tpm2 # Used by admins interactively - man-db From 59e9385ec69cad85a0197d98b23091844b4beef7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 10 May 2026 12:03:59 +0000 Subject: [PATCH 532/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260508.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 8b30678..e41db91 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index b35e761..2f10128 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 14671df..ae7aa1a 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index a6db987..89c0557 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 55f7dfe..15a1233 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index cd937ca..56872dc 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index d6a1410..1207ba5 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 5ba1e8a..8af2789 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index a70ce00..fedfacf 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 7ed6571..5ab30f3 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f985a9b..71f3df8 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 28f2165..25cf934 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260507.0@sha256:5caf8b80e39858325b83601f9470a093b73035a095dc86052f5b677e34c3b37a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 51a2201097c2446946fde8e618379712b74bcad0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 10 May 2026 12:04:50 +0000 Subject: [PATCH 533/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260508.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index b5d41be..8fe00a1 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 446a74d..0075bcb 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 2454800..0fa1995 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index f4ea68a..d114848 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index b856e64..cf89d4f 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 6354be3..2d20578 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 443531d..16c6be3 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 747bcbe..36facc0 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index ce53dd2..cd96962 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260507.0@sha256:67201d6a97acb250f0b5c9ccfd37af09869c5319249641ff32667b193a571be7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f - MANIFEST=fedora-standard - name: image-expires-after value: 5d From fee97cdaae4067c7e6be9e21cf0a2a48b304e68c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 10 May 2026 16:04:04 +0000 Subject: [PATCH 534/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260510.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index e41db91..cc7b90f 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 2f10128..824c3d0 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index ae7aa1a..c1e3c1d 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 89c0557..b9f09ec 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 15a1233..b12ab1f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 56872dc..441ccf0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 1207ba5..46e677f 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 8af2789..4033ff5 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index fedfacf..014169d 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 5ab30f3..f0fd49e 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 71f3df8..7fb8059 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 25cf934..dedcc74 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260508.1@sha256:de2b52eb819fa302956ffe55ad1c4bdb4b2989889b47bb6a84e85feea9f9e876 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7020501c76e272be0c4c8b402d775c0dc4851000 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 10 May 2026 16:04:25 +0000 Subject: [PATCH 535/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260510.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 02eb323..34f2c34 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 4ccf9d2..9040ebe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 0af5328..8b172e9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ed4545b..9eb805b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 68154c2..fb0e0dd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 255cede..74c8fb7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 8e41a34..d120824 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 3827fef..8cd0587 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 7c25b1d..b474417 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260506.n.0@sha256:71e2e8ff51ce8f28d973b8b33dfd6ab37375838594172948441060a4ebeea83e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2e40adb6ccf45abd6d80b1382d424839fa116b3a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 10 May 2026 20:04:50 +0000 Subject: [PATCH 536/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260510.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 8fe00a1..e6bac2d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 0075bcb..4972649 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 0fa1995..b73fd44 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index d114848..46296c9 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index cf89d4f..aab2f6b 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 2d20578..d2d7d9d 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 16c6be3..1a09226 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 36facc0..e85d001 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index cd96962..b65e796 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260508.1@sha256:8fa92d75b7ceed64ab76e8983260bc76b950211762ea3e3888c60d2662ed7c6f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 268f891e147f8eb96438f08ffb3e1488596d943b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 11 May 2026 08:04:30 +0000 Subject: [PATCH 537/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260511.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index cc7b90f..74554ac 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 824c3d0..ba9033c 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index c1e3c1d..37e746a 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index b9f09ec..56c51b5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index b12ab1f..6d0c835 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 441ccf0..6c4541a 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 46e677f..1702a50 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 4033ff5..1d7182d 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 014169d..2f79ee4 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index f0fd49e..dbe15aa 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 7fb8059..e373f9d 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index dedcc74..7b3f014 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260510.0@sha256:a22395c13507e40685a5815c3132c0a7c29e2464cc7390f5e6e9c72aba4ed2f6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 90bcf40283475cccfc4d83fff374e1efe48289d2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 11 May 2026 12:06:26 +0000 Subject: [PATCH 538/697] chore(deps): update fedora 43 repos_image to b2a4b7c Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 74554ac..3faac95 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index ba9033c..c386077 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 37e746a..e320dcd 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 56c51b5..39e8cc2 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6d0c835..485d19c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 6c4541a..8495a63 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 1702a50..a501fd4 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 1d7182d..80eccbd 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 2f79ee4..4b72306 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index dbe15aa..84c5a22 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index e373f9d..4f373b5 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 7b3f014..195f423 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:8d06152432caf25494cd3a33b0f227e385bf08b5f99ce51a3bc2248ac216f463 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ece9c008cba8d3386dc674e6c54ef23733c3844a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 11 May 2026 12:07:09 +0000 Subject: [PATCH 539/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260511.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 34f2c34..ccafe13 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 9040ebe..884d304 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 8b172e9..00a41e5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9eb805b..6f74fc4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index fb0e0dd..9071462 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 74c8fb7..d7b9d9d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d120824..0f39b70 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 8cd0587..733de94 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index b474417..5a51f7d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260510.n.0@sha256:da4364a54656e4d1eddf6d178297adb70a44068addede60cba1db21cd967e881 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 13f68c663b6062faa1565a8dbcf4250655203de5 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 11 May 2026 16:04:16 +0000 Subject: [PATCH 540/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260511.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index e6bac2d..4238a2f 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 4972649..89b81da 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index b73fd44..cca8cc2 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 46296c9..514f3fc 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index aab2f6b..c536960 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index d2d7d9d..0bdfb06 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 1a09226..bf43224 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index e85d001..3e984f7 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index b65e796..353ee50 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260510.0@sha256:99eab9b08fe843d528b1c40ca094e458ef9d043c7cefc090a236f338304a1d4c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 63322596d647afbfd2633b56d03c48ff299ef177 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 11 May 2026 20:03:43 +0000 Subject: [PATCH 541/697] chore(deps): update fedora rawhide repos_image to 502cafa Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ccafe13..42a7414 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 884d304..2956d04 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 00a41e5..c95c314 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6f74fc4..90a9215 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9071462..1628c8b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index d7b9d9d..ec15c58 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 0f39b70..4d78357 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 733de94..520c6e9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 5a51f7d..120d79e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:deb9199078da9cbc0c2d3b14080d632dccf5bd9713369191e33428d9c1157090 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 585bc8795adadd910b19bbfb8871bcdbfb6f84b8 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 00:04:39 +0000 Subject: [PATCH 542/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260512.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 3faac95..b591107 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index c386077..e411647 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index e320dcd..24f2fd2 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 39e8cc2..98df5e3 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 485d19c..6d25ecc 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 8495a63..a8ff997 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index a501fd4..9fe7b4d 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 80eccbd..c8137b2 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 4b72306..9b56937 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 84c5a22..de67bfb 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 4f373b5..50924fd 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index 195f423..acfb6b7 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260511.0@sha256:b2a4b7cbb44563db484933d6c3fed220180928a41022cc9047b39decc7b81a19 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 1aefa37d898fbcc0110786254930a619bacaf1f2 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 00:05:10 +0000 Subject: [PATCH 543/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260512.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 4238a2f..d054c82 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 89b81da..b549243 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index cca8cc2..4515443 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 514f3fc..1c1de1e 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index c536960..e4d49a4 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 0bdfb06..3abc3db 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index bf43224..eaaf2e7 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 3e984f7..a9f23a9 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 353ee50..75c23fb 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260511.0@sha256:c4ef26780c8d28d932f18f6b9773c817db785e913244a7bac24c14716197a191 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 406ebdece5637b8d9fa6331d8ff5c456edb28080 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 04:04:44 +0000 Subject: [PATCH 544/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260513.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 42a7414..ddd8b9b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 2956d04..07b4b7f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c95c314..9d54e74 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 90a9215..3e9311f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 1628c8b..3b5c949 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index ec15c58..0652741 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4d78357..d0b42c5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 520c6e9..0e93322 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 120d79e..97ac715 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260511.n.0@sha256:502cafae7d3d2a3ea605915e82d609257ac7a526b240751955c5f770ada91fab + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 885a96416fe1dfc4d9ee17340736c56631432769 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 12:04:16 +0000 Subject: [PATCH 545/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260513.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index b591107..89aeb5c 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index e411647..62364b9 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 24f2fd2..c055205 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 98df5e3..ba63da9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6d25ecc..6994639 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index a8ff997..7af5d3f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9fe7b4d..3130c6f 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index c8137b2..d75eee6 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 9b56937..937f7b7 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index de67bfb..202b6a0 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 50924fd..1bdacf8 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index acfb6b7..ffd64c6 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260512.0@sha256:ec392a09ee9c92c259161b41a07781f07dcee0290eeb4c9309e43c8407931e8c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7a07aa38d92881d9777cc831016394f894ba15ad Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 12:04:52 +0000 Subject: [PATCH 546/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260513.2 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index d054c82..bfe855b 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index b549243..1985bfb 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 4515443..a662e2d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 1c1de1e..94f2d6c 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index e4d49a4..ab73d88 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 3abc3db..e4429f8 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index eaaf2e7..48d6b67 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index a9f23a9..25fd71e 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 75c23fb..697e007 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260512.0@sha256:58ea8feeb9c63f05b1366de5ab0c5fc46b34fc951d11f6a186a3fb43d16ef4e0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 2b5f6973f64464f006d1e429cec14f0b4b87dd0f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 16:06:53 +0000 Subject: [PATCH 547/697] chore(deps): update fedora 43 repos_image to f7241d3 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 89aeb5c..9b09bbc 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 62364b9..0d62af5 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index c055205..942d2f7 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index ba63da9..7fd6a4a 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6994639..f2aac54 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 7af5d3f..177184e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 3130c6f..c75719d 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index d75eee6..25dc7e4 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 937f7b7..82c4c5f 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 202b6a0..fc308dd 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 1bdacf8..f21123a 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index ffd64c6..ba86e92 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:11ba3a43776be9a091862f1396f622c57b00a5d66fecd0c23c135dbd224cf51c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0b0eb8930d56c12d560b111a26a1046288324311 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 16:07:14 +0000 Subject: [PATCH 548/697] chore(deps): update fedora 44 repos_image to 2034483 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index bfe855b..0a89185 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 1985bfb..16efc39 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index a662e2d..d3c2e80 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 94f2d6c..2f6695c 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index ab73d88..4928a32 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index e4429f8..4cfcf28 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 48d6b67..20e7248 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 25fd71e..1f685c4 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 697e007..a79ddc5 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:a0875b954a8acb35bbc1305d51ae5b5edee0fa6b6ab89ce46bfe582ddd035bd0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 0bbecb08381fb0da3351d8cae0f8e657df60ed5d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 20:08:32 +0000 Subject: [PATCH 549/697] chore(deps): update fedora 44 repos_image to 407e460 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 0a89185..27720a5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 16efc39..7152c34 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index d3c2e80..018a34a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 2f6695c..7a4f2c2 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 4928a32..59d1b79 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 4cfcf28..1cb77c6 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 20e7248..4353b87 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 1f685c4..e205e48 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index a79ddc5..8d4d0af 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:2034483bffba1b94105babd0e873f5ab8206b2edba9a96c2d7e563a724d630d9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 7c6f08ce224826806e25197ccd61c2eeb5e9e018 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 14 May 2026 20:08:54 +0000 Subject: [PATCH 550/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260514.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ddd8b9b..0361d3a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 07b4b7f..b24cf43 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 9d54e74..8d533ac 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 3e9311f..9a8b68d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3b5c949..65db9b9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 0652741..c02b68a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d0b42c5..53f89b9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0e93322..a00e992 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 97ac715..6709224 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260513.n.0@sha256:9c60f99f6ae65189df2c37a5fc5de528b58297e0bc20d2787327d721bc159880 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 66396b0b64505bf71b23b3b1fa2850455604ac3d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 15 May 2026 00:06:15 +0000 Subject: [PATCH 551/697] chore(deps): update fedora rawhide repos_image to 09ab6e1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0361d3a..c1fe0dc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index b24cf43..080e5c3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 8d533ac..c4cc863 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9a8b68d..cc37da3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 65db9b9..4a9cab4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index c02b68a..5f02c5f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 53f89b9..d41a2ca 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a00e992..f0ca8a3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 6709224..16405ee 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:a3253bf906b07b4d5dc676b7d955104b5709948fb4a1849cedecadcb0afd5777 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ba6f529700a2154d1e1b24a9b639749f3eb9de95 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 15 May 2026 12:04:34 +0000 Subject: [PATCH 552/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260515.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-renovate-push.yaml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 9b09bbc..4c7bb2b 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 0d62af5..fd4e7d6 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 942d2f7..034dd57 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 7fd6a4a..d11f213 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index f2aac54..40d0868 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml index 177184e..3de78a6 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index c75719d..1b0221c 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 25dc7e4..091bca1 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml index 82c4c5f..e22a085 100644 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index fc308dd..c30a2e8 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f21123a..0643f9b 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml index ba86e92..80a50d9 100644 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260513.1@sha256:f7241d3f4106045398685f9630e5d8fbc2e79e723ae3a0a1fa0184cfc15d48df + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From a5294fb4dfd45e411ae0ca1384c676159b222df0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 15 May 2026 12:04:55 +0000 Subject: [PATCH 553/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260515.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 27720a5..90621f5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 7152c34..c47d839 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml index 018a34a..c70884a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 7a4f2c2..a5d4850 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 59d1b79..ad19ba8 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml index 1cb77c6..45c9bf4 100644 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 4353b87..516a51b 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index e205e48..b3f1676 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml index 8d4d0af..3a7ab80 100644 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-44-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260513.2@sha256:407e460acad8204e92c79927a42ad5a3e6d8aa5c94b1e456d03ea1f596c21561 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From f70902e00a0d5a664f70ca6639b4b598b6adc1da Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 15 May 2026 16:13:44 +0000 Subject: [PATCH 554/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260515.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c1fe0dc..3c0d106 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 080e5c3..6bc9ced 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index c4cc863..a1462b7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index cc37da3..15375ac 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 4a9cab4..44c7572 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 5f02c5f..34d61b2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d41a2ca..ea09e83 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f0ca8a3..e136657 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 16405ee..9107658 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260514.n.0@sha256:09ab6e1606027b665f4dba18fac1986c90a14dd552455c8d675072f3b78cce9f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 15b4addc3ed8c1835d3a6c59cc7a1514abcb4968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Fri, 15 May 2026 22:13:53 +0200 Subject: [PATCH 555/697] bootc-base-imagectl: Add support for excluding packages Fixes: https://gitlab.com/fedora/bootc/tracker/-/work_items/89 --- bootc-base-imagectl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 2798273..85c8b25 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -37,6 +37,10 @@ def run_build_rootfs(args): additional_pkgs = [shlex.quote(p) for p in set(args.install)] if len(additional_pkgs) > 0: override_manifest['packages'] = list(additional_pkgs) + if args.exclude: + exclude_pkgs = [shlex.quote(p) for p in set(args.exclude)] + if len(exclude_pkgs) > 0: + override_manifest['exclude-packages'] = list(exclude_pkgs) if args.add_dir: tmp_ostree_repo = tempfile.mkdtemp(dir='/var/tmp') subprocess.check_call(['ostree', 'init', '--repo', tmp_ostree_repo, '--mode=bare']) @@ -194,6 +198,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--reinject", help="Also reinject the build configurations into the target", action='store_true') build_rootfs.add_argument("--manifest", help="Use the specified manifest", action='store', default='default') build_rootfs.add_argument("--install", help="Add a package", action='append', default=[], metavar='PACKAGE') + build_rootfs.add_argument("--exclude", help="Exclude a package", action='append', default=[], metavar='PACKAGE') build_rootfs.add_argument("--cachedir", help="Cache repo metadata and RPMs in specified directory", action='store', default='') build_rootfs.add_argument("--add-dir", help='Copy dir contents into the target', action='append', default=[], metavar='DIR') build_rootfs.add_argument("--no-docs", help="Don't install documentation", action='store_true') From 5c0ec3f103fd78b25428f78095150c7d495bc556 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 16 May 2026 00:04:21 +0000 Subject: [PATCH 556/697] chore(deps): update fedora rawhide repos_image to bf13593 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 3c0d106..59301da 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6bc9ced..f61c63f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index a1462b7..6fff66d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 15375ac..5f816ba 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 44c7572..ca97caa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 34d61b2..9e89d7a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ea09e83..a55de24 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index e136657..1861d42 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 9107658..4ce5a00 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:81b3be9b825d89aa704b8d0d47b19d464fd8c5d4da3152c54ed703d5a51ad136 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d1727aaec2a1224db334892762a5f45c231e7832 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 16 May 2026 16:04:34 +0000 Subject: [PATCH 557/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260516.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 59301da..c1a97cc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f61c63f..9c71cc5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 6fff66d..d5066fe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 5f816ba..112deca 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index ca97caa..41ab2e7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 9e89d7a..091e2e8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a55de24..57ecf96 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 1861d42..c90a020 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 4ce5a00..49fb519 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260515.n.0@sha256:bf1359396aa69a33df52630ffa246a8e01c30aa20523ab110020c216a72cfa44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From ac8f9cb7ca12391ebc919ec576dff3c22ee8390a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 16 May 2026 20:05:53 +0000 Subject: [PATCH 558/697] chore(deps): update fedora rawhide repos_image to 8c29fff Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c1a97cc..98a3b9e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 9c71cc5..98894d6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index d5066fe..24d649f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 112deca..d0192e1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 41ab2e7..e0a0e75 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 091e2e8..aef05f3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 57ecf96..a562dd9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index c90a020..431f1b5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index 49fb519..ce11008 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:be807ee2321326a884f65bb911cf5a4cd7510333c04db6a1ce6da1bdc9ee1022 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From d8515fa6bb2b51aa7389c589cec9ba98f4bcf757 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 18 May 2026 16:04:09 +0000 Subject: [PATCH 559/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260518.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 98a3b9e..fb18c14 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 98894d6..1e0c615 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index 24d649f..f63af05 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index d0192e1..0d5d8b4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index e0a0e75..875577d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index aef05f3..9a6d250 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a562dd9..7bb2381 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 431f1b5..31beec1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index ce11008..da5ae62 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260516.n.0@sha256:8c29fff581d4d25f01cc488cd78677dcede6a96995b694b511e7d8d711fd9b53 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From b87d6dcf26388556cca60c1343a9d4142c7f6e32 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 18 May 2026 20:03:32 +0000 Subject: [PATCH 560/697] chore(deps): update fedora rawhide repos_image to e14ecea Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index fb18c14..ef9cb0d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 1e0c615..8619c99 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml index f63af05..a1dc7aa 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 0d5d8b4..fa7feba 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 875577d..53e8214 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml index 9a6d250..eb1bab4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 7bb2381..1290a8c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 31beec1..66040b3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml index da5ae62..196a9dc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:8bf6035c6ac58ce81b663ca5db02d5ef6887eaeaa38a7dd39dd9782c52ca4836 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - MANIFEST=fedora-standard - name: image-expires-after value: 5d From 3bc6686065aa877d6dae2f1c0984a2f2d8eb350c Mon Sep 17 00:00:00 2001 From: jcapitao-rh Date: Mon, 18 May 2026 14:17:27 +0200 Subject: [PATCH 561/697] .tekton: remove dedicated renovate pipelines It's a workaround solution to address the issue [1]. The issue [2] is back and need to be addressed usptream. In the meantime, we remove those pipelines and handle the bumps with MR only. [1] https://gitlab.com/fedora/bootc/base-images/-/work_items/81 [2] https://github.com/konflux-ci/support/issues/9 --- .../fedora-bootc-42-iot-renovate-push.yaml | 73 ------------------ ...a-bootc-42-minimal-plus-renovate-push.yaml | 73 ------------------ ...fedora-bootc-42-minimal-renovate-push.yaml | 71 ------------------ ...edora-bootc-42-standard-renovate-push.yaml | 75 ------------------- ...a-bootc-43-minimal-plus-renovate-push.yaml | 73 ------------------ ...fedora-bootc-43-minimal-renovate-push.yaml | 71 ------------------ ...edora-bootc-43-standard-renovate-push.yaml | 75 ------------------- .../fedora-bootc-44-iot-renovate-push.yaml | 73 ------------------ ...a-bootc-44-minimal-plus-renovate-push.yaml | 73 ------------------ ...fedora-bootc-44-minimal-renovate-push.yaml | 71 ------------------ ...edora-bootc-44-standard-renovate-push.yaml | 75 ------------------- ...edora-bootc-rawhide-iot-renovate-push.yaml | 73 ------------------ ...tc-rawhide-minimal-plus-renovate-push.yaml | 73 ------------------ ...a-bootc-rawhide-minimal-renovate-push.yaml | 71 ------------------ ...-bootc-rawhide-standard-renovate-push.yaml | 75 ------------------- 15 files changed, 1095 deletions(-) delete mode 100644 .tekton/fedora-bootc-42-iot-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-42-minimal-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-42-standard-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-43-minimal-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-43-standard-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-44-iot-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-44-minimal-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-44-standard-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-rawhide-iot-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml delete mode 100644 .tekton/fedora-bootc-rawhide-standard-renovate-push.yaml diff --git a/.tekton/fedora-bootc-42-iot-renovate-push.yaml b/.tekton/fedora-bootc-42-iot-renovate-push.yaml deleted file mode 100644 index 0f8e525..0000000 --- a/.tekton/fedora-bootc-42-iot-renovate-push.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-42-iot-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "iot.yaml".pathChanged() || - "iot/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-iot - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-42-iot-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-iot - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-iot diff --git a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml deleted file mode 100644 index 5933b86..0000000 --- a/.tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-42-minimal-plus-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-minimal-plus - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-42-minimal-plus-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-minimal-plus - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal-plus diff --git a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml b/.tekton/fedora-bootc-42-minimal-renovate-push.yaml deleted file mode 100644 index fef625d..0000000 --- a/.tekton/fedora-bootc-42-minimal-renovate-push.yaml +++ /dev/null @@ -1,71 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-42-minimal-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-minimal - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-42-minimal-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-minimal - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-standard-renovate-push.yaml b/.tekton/fedora-bootc-42-standard-renovate-push.yaml deleted file mode 100644 index 4bef40c..0000000 --- a/.tekton/fedora-bootc-42-standard-renovate-push.yaml +++ /dev/null @@ -1,75 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-42-standard-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "standard.yaml".pathChanged() || - "standard/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-standard - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-42-standard-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-standard - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-standard diff --git a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml deleted file mode 100644 index 3de78a6..0000000 --- a/.tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-43-minimal-plus-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-43 - appstudio.openshift.io/component: fedora-bootc-43-minimal-plus - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-43-minimal-plus-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - - MANIFEST=fedora-minimal-plus - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=43 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal-plus diff --git a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml b/.tekton/fedora-bootc-43-minimal-renovate-push.yaml deleted file mode 100644 index e22a085..0000000 --- a/.tekton/fedora-bootc-43-minimal-renovate-push.yaml +++ /dev/null @@ -1,71 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-43-minimal-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-43 - appstudio.openshift.io/component: fedora-bootc-43-minimal - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-43-minimal-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - - MANIFEST=fedora-minimal - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=43 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-minimal diff --git a/.tekton/fedora-bootc-43-standard-renovate-push.yaml b/.tekton/fedora-bootc-43-standard-renovate-push.yaml deleted file mode 100644 index 80a50d9..0000000 --- a/.tekton/fedora-bootc-43-standard-renovate-push.yaml +++ /dev/null @@ -1,75 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-43-standard-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "standard.yaml".pathChanged() || - "standard/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-43 - appstudio.openshift.io/component: fedora-bootc-43-standard - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-43-standard-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 - - MANIFEST=fedora-standard - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=43 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-43-standard diff --git a/.tekton/fedora-bootc-44-iot-renovate-push.yaml b/.tekton/fedora-bootc-44-iot-renovate-push.yaml deleted file mode 100644 index 5516a9f..0000000 --- a/.tekton/fedora-bootc-44-iot-renovate-push.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-44-iot-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "iot.yaml".pathChanged() || - "iot/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-44 - appstudio.openshift.io/component: fedora-bootc-44-iot - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-44-iot-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-20260209.n.0@sha256:c947e0988e3f00078d3ff59eaff5ee18fe1d6fd39dc1fd15d268de0d074df45f - - MANIFEST=fedora-iot - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-iot:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=44 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-44-iot diff --git a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml deleted file mode 100644 index c70884a..0000000 --- a/.tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-44-minimal-plus-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-44 - appstudio.openshift.io/component: fedora-bootc-44-minimal-plus - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-44-minimal-plus-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - - MANIFEST=fedora-minimal-plus - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=44 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-44-minimal-plus diff --git a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml b/.tekton/fedora-bootc-44-minimal-renovate-push.yaml deleted file mode 100644 index 45c9bf4..0000000 --- a/.tekton/fedora-bootc-44-minimal-renovate-push.yaml +++ /dev/null @@ -1,71 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-44-minimal-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-44 - appstudio.openshift.io/component: fedora-bootc-44-minimal - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-44-minimal-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - - MANIFEST=fedora-minimal - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=44 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-44-minimal diff --git a/.tekton/fedora-bootc-44-standard-renovate-push.yaml b/.tekton/fedora-bootc-44-standard-renovate-push.yaml deleted file mode 100644 index 3a7ab80..0000000 --- a/.tekton/fedora-bootc-44-standard-renovate-push.yaml +++ /dev/null @@ -1,75 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-44-standard-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "standard.yaml".pathChanged() || - "standard/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-44 - appstudio.openshift.io/component: fedora-bootc-44-standard - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-44-standard-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 - - MANIFEST=fedora-standard - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=44 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-44-standard diff --git a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml deleted file mode 100644 index e3dca4a..0000000 --- a/.tekton/fedora-bootc-rawhide-iot-renovate-push.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-rawhide-iot-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "iot.yaml".pathChanged() || - "iot/***".pathChanged() - ) && true == false - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-rawhide - appstudio.openshift.io/component: fedora-bootc-rawhide-iot - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-rawhide-iot-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260209.n.0@sha256:a46fca7ce98fd36b5edb6ef96867de573479af69c645801cdc8c53ad6708114c - - MANIFEST=fedora-iot - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=45 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-rawhide-iot diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml deleted file mode 100644 index a1dc7aa..0000000 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-rawhide-minimal-plus-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() - ) && true == false - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-rawhide - appstudio.openshift.io/component: fedora-bootc-rawhide-minimal-plus - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-rawhide-minimal-plus-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - - MANIFEST=fedora-minimal-plus - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=45 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal-plus diff --git a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml deleted file mode 100644 index eb1bab4..0000000 --- a/.tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml +++ /dev/null @@ -1,71 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-rawhide-minimal-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() - ) && true == false - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-rawhide - appstudio.openshift.io/component: fedora-bootc-rawhide-minimal - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-rawhide-minimal-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - - MANIFEST=fedora-minimal - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=45 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-rawhide-minimal diff --git a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml b/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml deleted file mode 100644 index 196a9dc..0000000 --- a/.tekton/fedora-bootc-rawhide-standard-renovate-push.yaml +++ /dev/null @@ -1,75 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch.startsWith("renovate/")) - ) && ( - ".tekton/fedora-bootc-rawhide-standard-renovate-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "standard.yaml".pathChanged() || - "standard/***".pathChanged() - ) && true == false - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-rawhide - appstudio.openshift.io/component: fedora-bootc-rawhide-standard - pipelines.appstudio.openshift.io/type: build - release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-rawhide-standard-renovate-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 - - MANIFEST=fedora-standard - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=45 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-rawhide-standard From 17e1bcf70b578d328c5020c7c9d5d8a21f194752 Mon Sep 17 00:00:00 2001 From: jcapitao-rh Date: Tue, 19 May 2026 09:40:37 +0200 Subject: [PATCH 562/697] renovate: disable tekton update for iot F44+ images Currently, Renovate tries to bump the Tekton pipeline pullspec for the iot pipelines which do not work. Let's skip it as well as we do for the custom regex. --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index e58eb59..2cd6ad3 100644 --- a/renovate.json +++ b/renovate.json @@ -68,7 +68,7 @@ "Disable REPOS_IMAGE updates for 44-iot and rawhide-iot tekton files", "until we fix https://gitlab.com/fedora/bootc/base-images/-/issues/74" ], - "matchManagers": ["custom.regex"], + "matchManagers": ["custom.regex", "tekton"], "matchFileNames": [".tekton/*-44-iot-*", ".tekton/*-rawhide-iot-*"], "enabled": false }, From 6342befb9c5ec60857fdf87fe57658e682967465 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 19 May 2026 12:04:29 +0000 Subject: [PATCH 563/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260519.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 90621f5..c335af4 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index c47d839..d8e1eae 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index a5d4850..ee7e52b 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index ad19ba8..ef7cc41 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 516a51b..3118add 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index b3f1676..4fb38c9 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260515.0@sha256:2b5546435a6b32b627f44ecd51e4f46702f2b5d5d04432606ac74f57396d0ae9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 813d83292044b9a192852ab6c481523b7eb6231b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 20 May 2026 04:04:45 +0000 Subject: [PATCH 564/697] chore(deps): update fedora 44 bootc build pipeline to 73024ae Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 90621f5..011eb83 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index c47d839..795c520 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index a5d4850..cf2371a 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index ad19ba8..9322afd 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 516a51b..05e169e 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index b3f1676..d6fe0a3 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From f9ddca728b9ce927cd78067851c1da24171df47e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 20 May 2026 08:06:39 +0000 Subject: [PATCH 565/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260520.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 4c7bb2b..0ced905 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index fd4e7d6..f78ab52 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 034dd57..6b96849 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index d11f213..82b641c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 40d0868..6dc6a76 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 1b0221c..5d414c2 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 091bca1..c8063c7 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index c30a2e8..ccad7a2 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 0643f9b..f1b0869 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260515.0@sha256:e3834e9a0f2ba127fe5f442d67cbb15701e62b062992c96c5fb8d56061a00578 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From f85f825c835546ae7c694df1d54688c74a267be8 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 20 May 2026 08:06:53 +0000 Subject: [PATCH 566/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260520.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index c335af4..6585569 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d8e1eae..a50725a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index ee7e52b..5fbbade 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index ef7cc41..724edcf 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 3118add..f36cf2c 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 4fb38c9..e5d2bfe 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260519.0@sha256:656b8eeea354800d4419dc216b6902376d60f6792a398314c0f9d0df7b3282fc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 65640e18f9d5b881648bc3bf229c1370b2b1aaa8 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 20 May 2026 08:07:14 +0000 Subject: [PATCH 567/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260519.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ef9cb0d..8cbeb32 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 8619c99..8ce97c1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index fa7feba..faa08e5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 53e8214..6314405 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1290a8c..0616db1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 66040b3..c900517 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260518.n.0@sha256:e14ecea08232b7ea047ca235c14c4fdc74739f6d7c1cfe22549825a7468fae10 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From ab0dadc5e55daa7c247668a84e3c4dc4da060668 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 21 May 2026 08:04:53 +0000 Subject: [PATCH 568/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260521.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 6585569..bb59916 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index a50725a..d73d38a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 5fbbade..b4855e4 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 724edcf..319e1e7 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index f36cf2c..55fd22d 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index e5d2bfe..7881626 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260520.0@sha256:b41d91021340e7dfd46268b720a7be0b180a7f325cf31cf9eee788dc956fab5b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From cf5ae3cad5d92f8b8c61998e7bcd7f0bd186f080 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 21 May 2026 12:08:14 +0000 Subject: [PATCH 569/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260520.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8cbeb32..564592c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 8ce97c1..89abacd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index faa08e5..4f25750 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 6314405..9898bfe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 0616db1..ca86d92 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index c900517..554c9a4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260519.n.0@sha256:ef3b9299b647a184a6f6c449d323de1a1a0e0ca4178a31962b474fdc908d9a9e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From f51ee7ddeb2e375fc21148e977d6c2726dee029a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 27 May 2026 12:03:27 +0000 Subject: [PATCH 570/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260527.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 0ced905..7760abf 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index f78ab52..020a9ad 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 6b96849..bd048cc 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 82b641c..c08e5fb 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 6dc6a76..caefa0b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 5d414c2..cb73e34 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index c8063c7..412dacd 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index ccad7a2..4010b87 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f1b0869..4b7bbab 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260520.0@sha256:e9f8b419d5b8784cd036161a97d0cab9f162d0df61664eb190ec276b2684f7da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From 6fa499d98e611762190b0e4665d2e959ee5d4388 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 27 May 2026 12:03:41 +0000 Subject: [PATCH 571/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260527.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index bb59916..24694dd 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d73d38a..46af520 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index b4855e4..c94598f 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 319e1e7..80e0852 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 55fd22d..e3c4b37 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 7881626..f2310df 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260521.0@sha256:c330b0c341175621725038b6d184d4cdaa2ff539db21d376b0cdd30df82005d1 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 0475a4865b71e64a12cd8382fdb7cf3326863801 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 27 May 2026 12:04:31 +0000 Subject: [PATCH 572/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260526.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 564592c..0c12855 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 89abacd..df7e26a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 4f25750..8fe400f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 9898bfe..4bf7ed4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ca86d92..ea936a7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 554c9a4..0a34fd5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260520.n.0@sha256:507d43c95912a863de0cc5f101867fc4f62ee2a17a108ca7c38a29aa197cd017 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 7c27da07621df106c0e2472a8dcecddbce53cccb Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 27 May 2026 20:04:07 +0000 Subject: [PATCH 573/697] chore(deps): update fedora 44 repos_image to 6bc4a28 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 24694dd..05b42b4 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 46af520..66e72df 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index c94598f..805cb19 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 80e0852..e098701 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index e3c4b37..1d1b64d 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index f2310df..f2df08e 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:ce2d895280d225ac2aa5948269dd9c1cde9e64b2724feecd702a8da52f0eae46 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 83b10708918ed809c11e9e96bffc20a6838d2094 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 08:09:57 +0000 Subject: [PATCH 574/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260528.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 7760abf..5366199 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 020a9ad..eb49286 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index bd048cc..8c091a4 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index c08e5fb..e9a56ee 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index caefa0b..b9103c9 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index cb73e34..9cc29f1 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 412dacd..c45484a 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 4010b87..4276762 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 4b7bbab..57637a1 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260527.0@sha256:f90a866c10fdc44f59f0d39824149eafa50d0fdfdda0643e1d16b45c81efcc33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From 2c69f5a5e3b33191ac5484e61250bd87f8d81985 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 08:10:15 +0000 Subject: [PATCH 575/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260528.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 45d97f2..e011736 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 9e4f48f..cf0ed92 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index e19c99f..f871649 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 6739f68..f48f91c 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index a6eaec7..f742605 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index f5b99d6..795307c 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260527.0@sha256:6bc4a28efab2b3e9a2406fd98a5c638b2a0698af8d9cba08ff6bddc9bdefc7bd + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 4921332389cff79564fe9d02d777b960f804a09c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 12:03:53 +0000 Subject: [PATCH 576/697] chore(deps): update fedora 43 bootc build pipeline to 73024ae Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 5366199..06cdca9 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index eb49286..3477a9d 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 8c091a4..b6349c8 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index e9a56ee..1695479 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index b9103c9..a24e184 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9cc29f1..4895b05 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index c45484a..a4552f7 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 4276762..17be3a0 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 57637a1..3b0ccb3 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 1b2158e7970ef607b52c4ff54ee99583a6b30160 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 12:04:23 +0000 Subject: [PATCH 577/697] chore(deps): update fedora 43 repos_image to e514dfb Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 5366199..a417aa1 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index eb49286..162bfad 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 8c091a4..654f3dd 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index e9a56ee..27daf1c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index b9103c9..6de5965 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9cc29f1..d5e8b12 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index c45484a..fcd5b37 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 4276762..054c4d6 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 57637a1..32f5c27 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:7f7c8bf3af9803e0220699dc29dc9b71cee57905d066b633357d1ba9c6816b59 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From 6e8ffdb623ffdfd4a0fcadf802bb927a4d4f8f23 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 12:04:45 +0000 Subject: [PATCH 578/697] chore(deps): update fedora 44 repos_image to d816ed7 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index e011736..ce909a6 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index cf0ed92..1d41ee7 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index f871649..504202e 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index f48f91c..ba81c3b 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index f742605..fbef8e2 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 795307c..a205568 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ea5b6afc9d088001adb5b1b61e1bc861c7b09da3deddafbec9e9ee0d538a8991 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 11abe846ad39c987ef8f9ddc9e475b5abc6b92de Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 12:05:19 +0000 Subject: [PATCH 579/697] chore(deps): update fedora rawhide bootc build pipeline to 73024ae Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0c12855..0b035e9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index df7e26a..a10c4e5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 8fe400f..81e1745 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 4bf7ed4..c095a42 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ea936a7..05d90d2 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0a34fd5..244909a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 72b106fee57b9028403afa43c352f0af7f6ff532 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 16:04:33 +0000 Subject: [PATCH 580/697] chore(deps): update fedora 44 repos_image to ff34982 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index ce909a6..3bb52ec 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 1d41ee7..b822821 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 504202e..23545b2 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index ba81c3b..a0bba83 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index fbef8e2..c29bb8f 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index a205568..ca67d10 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:d816ed79d84834c9c6ec7a0b73f7ffb224e38193559f275d75abed7fe711806b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 8e4b0f35a1485f52c1ed1cd6d1fba22225e827bd Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 28 May 2026 16:04:55 +0000 Subject: [PATCH 581/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260528.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0c12855..b4be396 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index df7e26a..2c59c89 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 8fe400f..e28917e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 4bf7ed4..2820664 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ea936a7..e04e714 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0a34fd5..584cba8 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260526.n.0@sha256:30d3ef3487ed151993fbdd5bc83506f2bbb7612f4160b0978b8cc03dedcfe848 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From bbb8436b5b2f0c1bda6c78f12577cb5e1b9c3376 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 29 May 2026 08:04:42 +0000 Subject: [PATCH 582/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260529.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 67665b3..7246b48 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index c74fa4d..9cd676e 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index dcfd90d..991685f 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index ce70068..3c3733d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index ec1bf97..faa29ea 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 63bddb1..8f39ec8 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 77ac8fb..a38df41 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 2c18490..0df8c14 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index c68f446..6a32779 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260528.0@sha256:e514dfb999e5576eae1f5662596da3e05165d5ce6bea906564ad5c2eebb73295 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From e7b336c2f5bab1fa73ddf2025c22317f74fd42fa Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 29 May 2026 08:04:56 +0000 Subject: [PATCH 583/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260529.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 3bb52ec..2c06453 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index b822821..29cecde 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 23545b2..10236e4 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index a0bba83..23b08ca 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index c29bb8f..1df23fe 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index ca67d10..5e6e5d5 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260528.0@sha256:ff3498205e46415383e1d38ab75452f6aad5a78bb4dc7dd08212ef628908a148 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 4df4de125cdefbc04db44996f238104713dce894 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 29 May 2026 16:06:31 +0000 Subject: [PATCH 584/697] chore(deps): update fedora 43 repos_image to ec5b37a Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 7246b48..c7fb232 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 9cd676e..d8fa686 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 991685f..39b270d 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 3c3733d..d3b1c84 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index faa29ea..d25967c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 8f39ec8..fb7bd14 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index a38df41..0cff0b7 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 0df8c14..2db7323 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 6a32779..addb84e 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:f01c97decee4092b26bcc3c42571a7a62ea019f1755754f5f1a311f73029e96c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From 8f0d68c2632d31c663ea591432fe3defc2aaf8b1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 29 May 2026 16:06:46 +0000 Subject: [PATCH 585/697] chore(deps): update fedora 44 repos_image to b50b5d9 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 2c06453..e8f91a5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 29cecde..67783bf 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 10236e4..b3d59a0 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 23b08ca..cd04152 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 1df23fe..789f86a 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 5e6e5d5..8ebc44a 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:27a53fd7f4fa38f311db1cd5a5df881b0f2a2b0f4185f991265ca2a531f86e44 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 0c068243ad029fbc1d6dfa4816fdb6ed3935477b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 29 May 2026 20:03:54 +0000 Subject: [PATCH 586/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260529.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 47d62f1..3f04d07 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index cd9da0f..126af4f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a48af6c..9d10825 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index d8e2be2..0d7644c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3aa0581..3419d93 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 286d0a3..2fc0b8f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260528.n.0@sha256:40b7a2d7b77dfba16827ff9cbf4cddd1575a92f850eb5ed0d19bdc9062cb888f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From fd1802b07df0d1078003f43152116dc2f55290be Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 30 May 2026 00:05:33 +0000 Subject: [PATCH 587/697] chore(deps): update fedora rawhide repos_image to 2378f2b Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 3f04d07..447c330 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 126af4f..f0badb5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9d10825..48b8f72 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 0d7644c..7231026 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3419d93..4716101 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2fc0b8f..bcda0a1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:3196c59e4ec63bdd045d02898399e17fc7dda20104f4237b2ab4a3b1f706bb4b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From a96c4d3b3d346da9f213bbf99bf312d59b8496df Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 30 May 2026 08:07:30 +0000 Subject: [PATCH 588/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260530.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index e8f91a5..3439d32 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 67783bf..5cb02b1 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index b3d59a0..8c0ee4b 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index cd04152..9e4257c 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 789f86a..08b0641 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 8ebc44a..e9a945c 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260529.0@sha256:b50b5d9f5fad162e6da6e6cb2e6fa19d484aa3ef56a38856b0dd5f912da28da2 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From d843b7046ad40f189dea420c3281f5bf3504616a Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Mon, 1 Jun 2026 13:32:21 -0400 Subject: [PATCH 589/697] renovate: Remove Fedora 42 Officially End-of-Life on 2026-05-27 Signed-off-by: John Eckersberg --- renovate.json | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/renovate.json b/renovate.json index 2cd6ad3..d3f8cc6 100644 --- a/renovate.json +++ b/renovate.json @@ -7,8 +7,6 @@ "to prevent blocking all releases if tests fail on one.", "", "Update schedules:", - "- Fedora 42 bootc-pipeline: 2-5 AM UTC daily", - "- Fedora 42 REPOS_IMAGE: at any time", "- Fedora 43 bootc-pipeline: 2-5 AM UTC daily", "- Fedora 43 REPOS_IMAGE: at any time", "- Fedora 44 bootc-pipeline: 2-5 AM UTC daily", @@ -72,35 +70,6 @@ "matchFileNames": [".tekton/*-44-iot-*", ".tekton/*-rawhide-iot-*"], "enabled": false }, - { - "matchManagers": ["tekton"], - "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], - "matchFileNames": [".tekton/fedora-bootc-42-*"], - "groupName": "Fedora 42 bootc-pipeline", - "groupSlug": "fedora-42-bootc-pipeline", - "branchPrefix": "renovate/fedora-42/", - "commitMessageTopic": "Fedora 42 bootc build pipeline", - "schedule": ["after 2am and before 5am"], - "timezone": "UTC", - "recreateWhen": "always", - "rebaseWhen": "always", - "additionalBranchPrefix": "", - "automerge": true - }, - { - "matchManagers": ["custom.regex"], - "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-42-compose/"], - "matchFileNames": [".tekton/fedora-bootc-42-*"], - "groupName": "Fedora 42 REPOS_IMAGE", - "groupSlug": "fedora-42-repos-image", - "branchPrefix": "renovate/fedora-42/", - "commitMessageTopic": "Fedora 42 REPOS_IMAGE", - "schedule": ["at any time"], - "recreateWhen": "always", - "rebaseWhen": "never", - "additionalBranchPrefix": "", - "automerge": true - }, { "matchManagers": ["tekton"], "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], From 68f0f21c99389f5f24ab52c4312108981eb6c081 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 1 Jun 2026 16:58:08 -0400 Subject: [PATCH 590/697] minimal: Add tmpfiles entries for Konflux injected content See https://github.com/konflux-ci/build-tasks-dockerfiles/pull/243 Unfortunately...some 3rd party container scanners just hard require these JSON files to exist at the target path. It's going to be a painful long road to get them fixed to rely on something else. Add `tmpfiles.d` entries to silence `bootc container lint` for this. It will have the effect of course of creating these files if they don't exist on boot, so in the future we'll probably aim to add an "ignore" entry for this into the bootc container lint. Also adds a rootfs test case verifying the tmpfiles config is present in built images. Assisted-by: OpenCode (Claude Sonnet 4.6) Signed-off-by: Colin Walters --- minimal/tmpfiles.yaml | 8 ++++++++ tests/rootfs/cases/tmpfiles-konflux-buildinfo | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100755 tests/rootfs/cases/tmpfiles-konflux-buildinfo diff --git a/minimal/tmpfiles.yaml b/minimal/tmpfiles.yaml index f47d3a4..e9846cb 100644 --- a/minimal/tmpfiles.yaml +++ b/minimal/tmpfiles.yaml @@ -6,5 +6,13 @@ postprocess: # Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=771713 d /var/lib/rpm-state 0755 - - - EOF + cat > /usr/lib/tmpfiles.d/konflux-buildinfo-contentsets.conf <<'EOF' + # Workaround for https://github.com/konflux-ci/build-tasks-dockerfiles/pull/243 + d /var/roothome/buildinfo 0755 - - - + d /var/roothome/buildinfo/content_manifests 0755 - - - + # Note we don't actually try to recreate the content; this just makes the linter ignore it + f /var/roothome/buildinfo/content_manifests/content-sets.json 0644 - - - + f /var/roothome/buildinfo/labels.json 0644 - - - + EOF # Workaround for https://issues.redhat.com/browse/RHEL-106203 rm -f /usr/lib/tmpfiles.d/home.conf diff --git a/tests/rootfs/cases/tmpfiles-konflux-buildinfo b/tests/rootfs/cases/tmpfiles-konflux-buildinfo new file mode 100755 index 0000000..e03a3b6 --- /dev/null +++ b/tests/rootfs/cases/tmpfiles-konflux-buildinfo @@ -0,0 +1,18 @@ +#!/bin/bash +set -xeuo pipefail +# Verify our custom tmpfiles.d configs by actually running systemd-tmpfiles +# against a temporary root and checking the expected paths are created. +# Workaround for https://github.com/konflux-ci/build-tasks-dockerfiles/pull/243 + +tmproot=$(mktemp -d) +trap 'rm -rf "${tmproot}"' EXIT + +systemd-tmpfiles --create --root="${tmproot}" \ + /usr/lib/tmpfiles.d/bootc-base-rpmstate.conf \ + /usr/lib/tmpfiles.d/konflux-buildinfo-contentsets.conf + +test -d "${tmproot}/var/lib/rpm-state" +test -d "${tmproot}/var/roothome/buildinfo" +test -d "${tmproot}/var/roothome/buildinfo/content_manifests" +test -f "${tmproot}/var/roothome/buildinfo/content_manifests/content-sets.json" +test -f "${tmproot}/var/roothome/buildinfo/labels.json" From ace298d37391e7ef6c2af885852cc2b45ce9adde Mon Sep 17 00:00:00 2001 From: jcapitao-rh Date: Tue, 2 Jun 2026 14:49:27 +0200 Subject: [PATCH 591/697] .tekton: remove F42 Konflux pipelines F42 is going EOL. --- .tekton/fedora-bootc-42-iot-pull-request.yaml | 73 ------------------ .tekton/fedora-bootc-42-iot-push.yaml | 70 ----------------- ...ra-bootc-42-minimal-plus-pull-request.yaml | 73 ------------------ .../fedora-bootc-42-minimal-plus-push.yaml | 70 ----------------- .../fedora-bootc-42-minimal-pull-request.yaml | 71 ------------------ .tekton/fedora-bootc-42-minimal-push.yaml | 68 ----------------- ...fedora-bootc-42-standard-pull-request.yaml | 75 ------------------- .tekton/fedora-bootc-42-standard-push.yaml | 72 ------------------ fedora-42.yaml | 7 -- 9 files changed, 579 deletions(-) delete mode 100644 .tekton/fedora-bootc-42-iot-pull-request.yaml delete mode 100644 .tekton/fedora-bootc-42-iot-push.yaml delete mode 100644 .tekton/fedora-bootc-42-minimal-plus-pull-request.yaml delete mode 100644 .tekton/fedora-bootc-42-minimal-plus-push.yaml delete mode 100644 .tekton/fedora-bootc-42-minimal-pull-request.yaml delete mode 100644 .tekton/fedora-bootc-42-minimal-push.yaml delete mode 100644 .tekton/fedora-bootc-42-standard-pull-request.yaml delete mode 100644 .tekton/fedora-bootc-42-standard-push.yaml delete mode 100644 fedora-42.yaml diff --git a/.tekton/fedora-bootc-42-iot-pull-request.yaml b/.tekton/fedora-bootc-42-iot-pull-request.yaml deleted file mode 100644 index c68375b..0000000 --- a/.tekton/fedora-bootc-42-iot-pull-request.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "pull_request" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-iot-pull-request.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "iot.yaml".pathChanged() || - "iot/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-iot - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-iot-on-pull-request -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-iot - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:on-pr-{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-iot diff --git a/.tekton/fedora-bootc-42-iot-push.yaml b/.tekton/fedora-bootc-42-iot-push.yaml deleted file mode 100644 index 1212a70..0000000 --- a/.tekton/fedora-bootc-42-iot-push.yaml +++ /dev/null @@ -1,70 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "false" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-iot-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "iot.yaml".pathChanged() || - "iot/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-iot - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-iot-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-iot - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-iot:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-iot diff --git a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml deleted file mode 100644 index 51cdd8a..0000000 --- a/.tekton/fedora-bootc-42-minimal-plus-pull-request.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "pull_request" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-minimal-plus-pull-request.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-minimal-plus - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-minimal-plus-on-pull-request -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-minimal-plus - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:on-pr-{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal-plus diff --git a/.tekton/fedora-bootc-42-minimal-plus-push.yaml b/.tekton/fedora-bootc-42-minimal-plus-push.yaml deleted file mode 100644 index 7decfc1..0000000 --- a/.tekton/fedora-bootc-42-minimal-plus-push.yaml +++ /dev/null @@ -1,70 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "false" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-minimal-plus-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-minimal-plus - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-minimal-plus-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-minimal-plus - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal-plus:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal-plus diff --git a/.tekton/fedora-bootc-42-minimal-pull-request.yaml b/.tekton/fedora-bootc-42-minimal-pull-request.yaml deleted file mode 100644 index 013a975..0000000 --- a/.tekton/fedora-bootc-42-minimal-pull-request.yaml +++ /dev/null @@ -1,71 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "pull_request" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-minimal-pull-request.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-minimal - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-minimal-on-pull-request -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-minimal - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:on-pr-{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-minimal-push.yaml b/.tekton/fedora-bootc-42-minimal-push.yaml deleted file mode 100644 index 3b4b3b5..0000000 --- a/.tekton/fedora-bootc-42-minimal-push.yaml +++ /dev/null @@ -1,68 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "false" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-minimal-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-minimal - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-minimal-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-minimal - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-minimal:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-minimal diff --git a/.tekton/fedora-bootc-42-standard-pull-request.yaml b/.tekton/fedora-bootc-42-standard-pull-request.yaml deleted file mode 100644 index 78130b6..0000000 --- a/.tekton/fedora-bootc-42-standard-pull-request.yaml +++ /dev/null @@ -1,75 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "true" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "pull_request" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-standard-pull-request.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "standard.yaml".pathChanged() || - "standard/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-standard - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-standard-on-pull-request -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-standard - - name: image-expires-after - value: 5d - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:on-pr-{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-standard diff --git a/.tekton/fedora-bootc-42-standard-push.yaml b/.tekton/fedora-bootc-42-standard-push.yaml deleted file mode 100644 index ca69b9f..0000000 --- a/.tekton/fedora-bootc-42-standard-push.yaml +++ /dev/null @@ -1,72 +0,0 @@ -apiVersion: tekton.dev/v1 -kind: PipelineRun -metadata: - annotations: - build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} - build.appstudio.redhat.com/commit_sha: '{{revision}}' - build.appstudio.redhat.com/target_branch: '{{target_branch}}' - pipelinesascode.tekton.dev/cancel-in-progress: "false" - pipelinesascode.tekton.dev/max-keep-runs: "3" - pipelinesascode.tekton.dev/on-cel-expression: | - ( - (event == "push" && target_branch == "main") - ) && ( - ".tekton/fedora-bootc-42-standard-push.yaml".pathChanged() || - "Containerfile".pathChanged() || - "bootc-base-imagectl".pathChanged() || - "install-manifests".pathChanged() || - "fedora-includes/generic.yaml".pathChanged() || - "minimal.yaml".pathChanged() || - "minimal/***".pathChanged() || - "minimal-plus.hidden.yaml".pathChanged() || - "minimal-plus/***".pathChanged() || - "standard.yaml".pathChanged() || - "standard/***".pathChanged() - ) - test.appstudio.openshift.io/comment_strategy: "disable_all" - creationTimestamp: null - labels: - appstudio.openshift.io/application: fedora-bootc-42 - appstudio.openshift.io/component: fedora-bootc-42-standard - pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-42-standard-on-push -spec: - params: - - name: git-url - value: '{{source_url}}' - - name: revision - value: '{{revision}}' - - name: build-platforms - value: - - linux/amd64 - - linux/arm64 - - linux/ppc64le - - linux/s390x - - name: dockerfile - value: Containerfile - - name: path-context - value: . - - name: privileged-nested - value: true - - name: build-args - value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-42-compose:Fedora-42-updates-20260430.0@sha256:48bac0157ccaa040d0343f5647ac8262c3f5006d0a047b0b9ec2170a7e7c0701 - - MANIFEST=fedora-standard - - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-42-standard:{{revision}} - - name: labels - value: - - org.opencontainers.image.version=42 - pipelineRef: - params: - - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 - - name: name - value: buildah-build-bootc-multi-platform-oci-ta - - name: kind - value: pipeline - resolver: bundles - timeouts: - pipeline: 6h - taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-42-standard diff --git a/fedora-42.yaml b/fedora-42.yaml deleted file mode 100644 index 34c6c1d..0000000 --- a/fedora-42.yaml +++ /dev/null @@ -1,7 +0,0 @@ -# NB: This treefile is used by the legacy pungi path only to build tier-1. It -# will be removed in the future. -releasever: 42 -repos: - - fedora - - fedora-updates -include: fedora-bootc.yaml From 5ecaa00668f9e54d7ec53871268283f65969cddd Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Mon, 22 Jun 2026 13:37:09 -0400 Subject: [PATCH 592/697] bootc-base-imagectl: error when --add-dir dir is missing This was silently not failing and should be considered a hard failure. Also add log statement for help debugging something like this. --- bootc-base-imagectl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 85c8b25..3064986 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -48,8 +48,11 @@ def run_build_rootfs(args): override_manifest['ostree-override-layers'] = [] for dir in args.add_dir: + print(f"Processing --add-dir for {dir}") base = os.path.basename(dir) abs = os.path.realpath(dir) + if not os.path.exists(abs): + raise Exception(f"add dir directory not found: {abs}") # capture output to hide commit digest printed subprocess.check_output(['ostree', 'commit', '--repo', tmp_ostree_repo, '-b', f'overlay/{base}', abs, '--owner-uid=0', '--owner-gid=0', '--no-xattrs', '--mode-ro-executables']) From 5eee92b4b25941ae4b52da81fb80db1f3e945501 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 26 Jun 2026 08:45:56 -0400 Subject: [PATCH 593/697] minimal: Exclude all kernel-debug subpackages Something changed in depsolving recently in at least CentOS Stream 10 and we started getting `kernel-debug-modules` being pulled in. Assisted-by: OpenCode (claude-opus-4-6) Signed-off-by: Colin Walters --- minimal/bootc.yaml | 6 ------ minimal/kernel.yaml | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/minimal/bootc.yaml b/minimal/bootc.yaml index 128afd3..63998f5 100644 --- a/minimal/bootc.yaml +++ b/minimal/bootc.yaml @@ -8,9 +8,3 @@ packages: # Required by bootc install, sgdisk has been replaced by Rust crate # in bootc https://github.com/containers/bootc/pull/775 - xfsprogs e2fsprogs dosfstools - -exclude-packages: - # Exclude kernel-debug-core to make sure that it doesn't somehow get - # chosen as the package to satisfy the `kernel-core` dependency from - # the kernel package. - - kernel-debug-core diff --git a/minimal/kernel.yaml b/minimal/kernel.yaml index 0dd777d..8921348 100644 --- a/minimal/kernel.yaml +++ b/minimal/kernel.yaml @@ -4,3 +4,9 @@ packages: exclude-packages: - kernel-debug + - kernel-debug-core + - kernel-debug-modules + - kernel-debug-modules-core + - kernel-debug-modules-extra + - kernel-debug-uki-virt + - kernel-debug-uki-virt-addons From afb971740d774d6a8dd58136f6624927122da723 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 30 Jun 2026 12:01:18 +0000 Subject: [PATCH 594/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260630.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index c7fb232..6b83300 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index d8fa686..200ff7c 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 39b270d..7958135 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index d3b1c84..ab82edc 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index d25967c..aa4427c 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index fb7bd14..8cd18ed 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 0cff0b7..8369b12 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 2db7323..39be89f 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index addb84e..b6a664d 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260529.0@sha256:ec5b37a5a8b229c1d8b61669e1b910466cb4e8ac4b0dd3c9bb31d89bd8a37063 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From 7089b3d7c976b495bf7f9fa3012f2bd8b9106b0b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 30 Jun 2026 12:02:08 +0000 Subject: [PATCH 595/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260629.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 3439d32..eeaf05c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 5cb02b1..28724f3 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 8c0ee4b..b15da58 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 9e4257c..15c5fcf 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 08b0641..9118e14 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index e9a945c..f52efcc 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260530.0@sha256:afb045cbee8c326f0d82bb6dc3f9b14b13ac90c0a1a413f50471ccc68c2235e5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 9401c0b8a1675c42ea4dc852aeaecfba245c96cb Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 30 Jun 2026 16:04:08 +0000 Subject: [PATCH 596/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260629.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 447c330..8b78b0a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f0badb5..a690b0b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 48b8f72..5ccd39d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 7231026..b26af1e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 4716101..a8c6dc9 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index bcda0a1..5343297 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260529.n.0@sha256:2378f2bd0ad2fbd8856e14ca984af8158952044442063392ae5472a1aedee8f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 8b99d90e3f00a71675b4fb6a27898b0e14942e67 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 1 Jul 2026 00:02:29 +0000 Subject: [PATCH 597/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260630.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index eeaf05c..74f7206 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 28724f3..6c0d401 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index b15da58..c3955e2 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 15c5fcf..cc2cc0b 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 9118e14..081ec04 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index f52efcc..3b17b2f 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260629.0@sha256:5f48be565c31ab4737ced8bd71b25aa2ed178f44950aa88834787dc1cfad87ce + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 308b8affd16ca0e87c6793d56c9e7eb0dbac1e14 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 1 Jul 2026 12:01:40 +0000 Subject: [PATCH 598/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 74f7206..b3bf7db 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 6c0d401..aa813e6 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index c3955e2..a099a8b 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index cc2cc0b..760e1da 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 081ec04..f411144 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 3b17b2f..fa919af 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 224162f3abd37b1ebb174fbf5f75557e98d3178b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 1 Jul 2026 12:02:17 +0000 Subject: [PATCH 599/697] chore(deps): update fedora rawhide bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8b78b0a..5c8c358 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a690b0b..866fdca 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 5ccd39d..076ca57 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index b26af1e..50ac030 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a8c6dc9..8e91b94 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 5343297..8b1eaf7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From ce06ca129d0fa801939d00c19f428a18f32ab989 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 1 Jul 2026 12:02:30 +0000 Subject: [PATCH 600/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260701.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 6b83300..23f9696 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 200ff7c..80ef707 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 7958135..356d3e0 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index ab82edc..9a55953 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index aa4427c..1a50f22 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 8cd18ed..c0f2039 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 8369b12..ee22af6 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 39be89f..4f9c15f 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index b6a664d..5f30998 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260630.0@sha256:4376189394ceb4656eede355fe6a79b50b97092704129a83f88ebf4060aa49fe + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From 6ff6f01c610ae069d876b9f0522bfe4e1d0e5664 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 1 Jul 2026 16:01:08 +0000 Subject: [PATCH 601/697] chore(deps): update fedora 43 repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 23f9696..948880d 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 80ef707..15808a7 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 356d3e0..37a113b 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 9a55953..f1b0b60 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 1a50f22..f80c34d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index c0f2039..9a5e197 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index ee22af6..8e1a276 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 4f9c15f..c3542bf 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 5f30998..d5cc7dd 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:e58eaec8ae8b553979e4ad11ca42a6f0074a5b4dc1a90283701744719001b20a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From eb67773b724285b98bd65c5becc8880154369029 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 1 Jul 2026 20:01:17 +0000 Subject: [PATCH 602/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260701.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index b3bf7db..d1f6cdd 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index aa813e6..187b6a2 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index a099a8b..9c9aea2 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 760e1da..90ce5f7 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index f411144..183667d 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index fa919af..033e283 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260630.1@sha256:170bfe8273deced8f98de104cdc2c5996b0d7045a96bddacfa50fe2806934572 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 9288d42e4cbcf37ceabc3b3c7a2df881d8060f8f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 1 Jul 2026 20:02:05 +0000 Subject: [PATCH 603/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260701.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 5c8c358..db7e34c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 866fdca..73f8da7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 076ca57..a3ff866 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 50ac030..804231f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 8e91b94..d094aaa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 8b1eaf7..2ec9cd5 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260629.n.0@sha256:7c1cfb84dc1735dd258c84cd1b26a4033706dd4a84b7024bddb8eecdf529ea93 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 8906d8bd084f4d3de4f4a6b09cbec5b0eb677ae7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 04:01:22 +0000 Subject: [PATCH 604/697] chore(deps): update fedora 43 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 948880d..d487287 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 15808a7..b58405b 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 37a113b..9e13313 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index f1b0b60..6a30380 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index f80c34d..376c3e1 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9a5e197..cff32d4 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 8e1a276..2e71780 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index c3542bf..9e57c9b 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index d5cc7dd..8d59f01 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:73024ae5cf5dd43b7c118324c99a5ede2f5f53c4d80ff064f0839c46a4403897 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From a308ba116f0ddadbd711177c04ca44f9e955446b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 04:01:45 +0000 Subject: [PATCH 605/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index d1f6cdd..a1f574c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 187b6a2..737dcbd 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 9c9aea2..10f0080 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 90ce5f7..94118ca 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 183667d..ac9cd4e 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 033e283..dc296b3 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 8ff3e506c6e7cab9ff99cc52828d7fe9c2730368 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 04:02:34 +0000 Subject: [PATCH 606/697] chore(deps): update fedora rawhide bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index db7e34c..a06813f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 73f8da7..4695455 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a3ff866..6975c93 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 804231f..f071a43 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d094aaa..fa0b8d0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2ec9cd5..eab47ed 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:83f81b141af5b7da42fab480c8c4c2940a3969db5c1b9e222896a06dc806f0d7 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From f8554d20dbe6f98a413903c61dd96d53af549fbc Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 08:05:21 +0000 Subject: [PATCH 607/697] chore(deps): update fedora rawhide repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index db7e34c..8c5a67b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 73f8da7..4efaa1b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a3ff866..2481b06 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 804231f..38676cb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index d094aaa..d22e755 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2ec9cd5..37bc69e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:4d121dc96c57ae39f75756f8bcf367ed907944d9b2fbb20454d1cbffe67628d6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 4c035a1ce836f5f6cb03ae85aa315894464e729a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 16:02:05 +0000 Subject: [PATCH 608/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260702.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index a1f574c..a86c9b0 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 737dcbd..0c2bd44 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 10f0080..064bdf1 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 94118ca..03595f9 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index ac9cd4e..a909dd3 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index dc296b3..dae8e40 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260701.0@sha256:f506d994044ca701eefbe9cbc7cc90d399cb946b457bc4740503882d769d0290 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 29d7e5b9f9cda073db866017129233f759a4537d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 16:02:54 +0000 Subject: [PATCH 609/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260702.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c21f1e4..c888442 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f7a1b96..3d12fe2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index af66627..6ee2bb5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 68ac116..34a1448 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 56c71db..9da8235 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 780b391..95d2364 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260701.n.0@sha256:495797b515db362b939f1f16a6c8360cc95e5fba9a3f205409a3eb8a21b86fbc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From dd1ee493dfb506e7776da8d1277a15fe83ade21d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 20:01:04 +0000 Subject: [PATCH 610/697] chore(deps): update fedora 44 repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index a86c9b0..9b5b158 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 0c2bd44..12ea4d5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 064bdf1..87042a5 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 03595f9..26db3eb 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index a909dd3..36ea50f 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index dae8e40..c8a01a6 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:61352ca2907ba879f6c590f84e10c2703ef63e67aec266b85c7d76d4366ef851 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 809ce6ea9d91476b3fa4754b5fe735aaec9bdcf1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 2 Jul 2026 20:01:51 +0000 Subject: [PATCH 611/697] chore(deps): update fedora rawhide repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c888442..5953169 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3d12fe2..1a1a92f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6ee2bb5..32d1420 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 34a1448..4d5b8b3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 9da8235..e957580 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 95d2364..ccb824e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:25c0663bdbd7330e10050f5e963b955ee4890c766075b5a36edffabe803fd998 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From bf6b902b8d5e2c2c95f6d2241d786d43ed8f44ec Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 3 Jul 2026 04:09:29 +0000 Subject: [PATCH 612/697] chore(deps): update fedora 43 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index d487287..dc27075 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index b58405b..6a81d95 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 9e13313..262c9c5 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 6a30380..485ad83 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 376c3e1..000beb0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index cff32d4..f6ad059 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 2e71780..7bc205e 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 9e57c9b..5e2445b 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 8d59f01..e08d5f1 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 19d4c0fa5fe71f17542ec72e8253583f088bb47f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 3 Jul 2026 04:10:16 +0000 Subject: [PATCH 613/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index a86c9b0..b2c6154 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 0c2bd44..deba550 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 064bdf1..3c610a1 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 03595f9..14570d1 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index a909dd3..b6a74cf 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index dae8e40..fcc1f6e 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 7f6c1a0cb5d635723ebd6d6c087220bd79ec3d67 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 4 Jul 2026 04:01:29 +0000 Subject: [PATCH 614/697] chore(deps): update fedora rawhide bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index c888442..af397f0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3d12fe2..bab4652 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6ee2bb5..5ca9924 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 34a1448..1a148a1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 9da8235..7dbdb6a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 95d2364..b7f682e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:1955785b94134706cf9b14fd39195b765efae098c18f7b49d3496fa7a618ff4e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From da2feaaa3ae5994910ed4f1c02eeeb8ed25683be Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 6 Jul 2026 20:01:24 +0000 Subject: [PATCH 615/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260705.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 5cbe64f..51f0a45 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index b80fbf2..e2b3286 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 5a24210..52fff49 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 4080683..e1f8766 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 98c081a..7fabe4e 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 089d3e2..c18b9d5 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260702.0@sha256:55238808c9f4d43aaf56bcb92c2ccd91a5754df7c8b2afadaef48822a55396ae + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From e59d70d9299294080db05a31e7b836eaaa07a447 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 6 Jul 2026 20:02:15 +0000 Subject: [PATCH 616/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260706.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 8c08daf..eb75a06 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 7e87582..49e1f92 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index e512369..6dae130 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 40bf3f4..0c06411 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index aacb1f5..32ba493 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b19c21a..02728aa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260702.n.0@sha256:af7bb54a00acaf6ceb72663167e8538da2cc98c852ed5c877511f86b189855bc + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 5398da11860ea5416dd19b6471b5a11011c4b0be Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 7 Jul 2026 04:01:37 +0000 Subject: [PATCH 617/697] chore(deps): update fedora 43 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index dc27075..3e9adef 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 6a81d95..3171195 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 262c9c5..9d234b0 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 485ad83..16c57bd 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 000beb0..4205aff 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index f6ad059..02d6077 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 7bc205e..fc48371 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 5e2445b..89e59a1 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index e08d5f1..3116e97 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 602d870e5af1b2854a1d5f426628d16b58fc80b1 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 7 Jul 2026 04:02:24 +0000 Subject: [PATCH 618/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 51f0a45..411590d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index e2b3286..bf64122 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 52fff49..5cc5279 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index e1f8766..4af0fb3 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 7fabe4e..44aee6f 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index c18b9d5..b1c61c3 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 07a7a45308868b30440f17563cbbb98c752dbb33 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 7 Jul 2026 08:04:00 +0000 Subject: [PATCH 619/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260706.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 51f0a45..75f512c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index e2b3286..dfcc909 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 52fff49..9e38c71 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index e1f8766..65f0201 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 7fabe4e..0324605 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index c18b9d5..bcfcdac 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260705.0@sha256:4a23af86f56d3dbca6acb19388a29d706076940752ab8be54d5554b5da62403d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 0e6fbcbf3fcca75ac8c6d8432f67e703def1af22 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 7 Jul 2026 16:00:59 +0000 Subject: [PATCH 620/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260707.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 46da2c0..670c73e 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d5a0333..4711f4e 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index cf6f59d..db76b5f 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index cf45c09..c959f37 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 73f589f..a1138a6 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 54f3c76..5598720 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260706.1@sha256:46b2d17d2978baae07126e343460cc5d91675880027cb27b9c2a1525b766efc3 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From e830e58a78275376a2bf6095b80842fe31be832b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 7 Jul 2026 20:01:34 +0000 Subject: [PATCH 621/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260707.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index eb75a06..59fd4dc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 49e1f92..6667ecc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 6dae130..c598259 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 0c06411..3d76415 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 32ba493..c78f628 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 02728aa..7078013 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260706.n.0@sha256:e5f8d3a4354b4233d84794d900a6dd9d9b05361d7f4e1a58f6e6156ec5b91199 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 04eab03a32361636b12ed4b3fb3ad261ed20afdd Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Jul 2026 00:04:06 +0000 Subject: [PATCH 622/697] chore(deps): update fedora 44 repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 670c73e..b84762c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 4711f4e..bdd5b49 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index db76b5f..89dc8d5 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index c959f37..d9ff441 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index a1138a6..9150f78 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 5598720..582d7c2 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:95765380ca973a07131a1fa322af93111a65f67f94b14afdae8588471831866d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 4c45eb9af21cddfd62499ed1aa18ce41d941b3a0 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Jul 2026 00:04:53 +0000 Subject: [PATCH 623/697] chore(deps): update fedora rawhide repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 59fd4dc..50a6679 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6667ecc..5bd9415 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index c598259..83d1a62 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 3d76415..25e1327 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c78f628..0e74c4a 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 7078013..5642fb0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:f6eda2cf141c9a1362839f654cc80c76a188e38fdd967e0fa87e3f50f663af09 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From d097ebbe91d69ed3d45cab8c22bce50c7a169de9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Jul 2026 04:01:06 +0000 Subject: [PATCH 624/697] chore(deps): update fedora 43 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 3e9adef..0ba2dcd 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 3171195..f43c118 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 9d234b0..a44594c 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 16c57bd..affa7e1 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 4205aff..7b7f33d 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 02d6077..790bdde 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index fc48371..abb4ce3 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 89e59a1..701e9ce 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 3116e97..f6fec75 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 8307e0c8bfcdc45a94b998d630f704d72f984ccb Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Jul 2026 04:01:53 +0000 Subject: [PATCH 625/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 670c73e..0e67618 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 4711f4e..ad3a40f 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index db76b5f..17cfaeb 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index c959f37..5efbdf8 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index a1138a6..96ac765 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 5598720..cad72e3 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:2f74ab0a1d7d59ddd3f863068e9801c40d1842b27cb180dd3d69aff7303e10f8 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From e3933a14cee75c7fec74620ed49ad7ef4c66bcec Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Jul 2026 16:03:32 +0000 Subject: [PATCH 626/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260708.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 13b3ebf..c785c84 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index c6f2ff9..752c50c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index c0def28..e8df791 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index a8a2dfb..28c9f85 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index ccd8b85..257b0ce 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index a7eccd0..58b5705 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260707.0@sha256:d7ef3ef551c2d96df83b993e829db28b385a3726208e82dece15fe0f780f33d0 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 75a58387dc486b9e47b296f0bb0ffdf0e69ce09a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 8 Jul 2026 20:01:16 +0000 Subject: [PATCH 627/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260708.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 50a6679..97c8d69 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5bd9415..11485c6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 83d1a62..d58fa59 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 25e1327..b84bc3e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 0e74c4a..e334ad3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 5642fb0..b130da6 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260707.n.0@sha256:e0410a1a1c9a903230e68a28288f0b2a613482558f3ee8279b9edbc93426c938 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 6740be2043e16c5146661e8e6ef296014841eeb3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 9 Jul 2026 04:01:44 +0000 Subject: [PATCH 628/697] chore(deps): update fedora 43 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 0ba2dcd..60cd42d 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index f43c118..50cfe6a 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index a44594c..0fdf3a2 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index affa7e1..7d43ff5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 7b7f33d..4adb5e3 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 790bdde..9a5a285 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index abb4ce3..df8e57b 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 701e9ce..c46fd43 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index f6fec75..1556c5b 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 0dd0712b36d8a24a671fd995c94702a59f3495a3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 9 Jul 2026 04:02:32 +0000 Subject: [PATCH 629/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index c785c84..2f7abce 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 752c50c..1cd61f9 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index e8df791..b292249 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 28c9f85..751f679 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 257b0ce..cea5fa8 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 58b5705..0953ce3 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48c91a148a5d6dbba9a95e136bd9890ef1b4b195a792f851934c282aedb44f89 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 66fd1a48374c70d40fa06c62b60ef016583cc6b4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 9 Jul 2026 08:03:59 +0000 Subject: [PATCH 630/697] chore(deps): update fedora 44 repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index c785c84..924c7dc 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 752c50c..4fdeeaf 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index e8df791..b314b20 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 28c9f85..9969b51 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 257b0ce..0fd10f5 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 58b5705..13028c6 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:a48a1d7ed435cdb4e835a72645f7ff1e4a70218717e08c3351044153ea2e9cb9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From d10e19e852a2af54925d0851c84103baff30cbd3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 9 Jul 2026 08:04:47 +0000 Subject: [PATCH 631/697] chore(deps): update fedora rawhide repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 97c8d69..0b6b9a8 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 11485c6..929394a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index d58fa59..9b2c040 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index b84bc3e..d90f37c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e334ad3..a2a9914 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b130da6..32df93b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:6461987c43627a1fcada1f5f97bc337e88a2bbcf2ffc7975984acd242479ef55 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From c1ccea165995a19aca9364b824fb6ab99b69b2dc Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 9 Jul 2026 16:01:36 +0000 Subject: [PATCH 632/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260709.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0b6b9a8..f6cd81a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 929394a..a91dc4e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9b2c040..5bfce10 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index d90f37c..f9ed975 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a2a9914..6539069 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 32df93b..6662908 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260708.n.0@sha256:df5c7c26e97ab72ab57c896dfe381ddee622d12be07c30ade31e6cd560ded0da + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 5544a155c89bb2166279d1dc21408ee092954a10 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 10 Jul 2026 04:01:30 +0000 Subject: [PATCH 633/697] chore(deps): update fedora rawhide bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index f6cd81a..3553631 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a91dc4e..3c7bbbc 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 5bfce10..a890cfe 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f9ed975..a9c3ff0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 6539069..7b884df 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 6662908..b1bb1cf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:0ad9e06a3c1f64057caaaa1a14f24904036822bb986d43b2d729451c25a399dc + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 691dd7112719142a366cc6d37e849f2980b8c75b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 10 Jul 2026 20:01:39 +0000 Subject: [PATCH 634/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260710.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 1b84228..86c4cdf 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d5d18d5..d19acbf 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 4b3059f..b1fa728 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 8d14ac8..97ba1a8 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 06c9240..922248f 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 50160c4..09e57db 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260708.0@sha256:d2c2dca53b4fd484a8be4734ed43e540e5fa95bb782de630c3aae9c8f16ace5c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 7724bb1e41e45dbe291c75a1f421849e1fdc7d32 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 10 Jul 2026 20:02:27 +0000 Subject: [PATCH 635/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260710.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 3553631..9a26f18 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 3c7bbbc..7aca61a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a890cfe..163243a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index a9c3ff0..eb5e932 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 7b884df..e91adca 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b1bb1cf..26ffa95 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260709.n.0@sha256:8b59c11f295951b7a3cda0d8f8def0741c11d9001f6b8a95a7e1fee7f7591153 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From a41c25e7c9dd63d5402dbcb7594ce7290c03da22 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 11 Jul 2026 16:01:21 +0000 Subject: [PATCH 636/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260711.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 9a26f18..64f7aa4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 7aca61a..28a808e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 163243a..36f05c7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index eb5e932..c722287 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e91adca..ea810a3 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 26ffa95..81c68d0 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260710.n.0@sha256:d3e77a3b1995ede50ab84a234ede24ffc1e522529b596f6647f5efc2a9ff76e6 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 965a78be6ea1205a410543352ea3d30475a036a4 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 13 Jul 2026 16:05:25 +0000 Subject: [PATCH 637/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260713.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 64f7aa4..462e6c9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 28a808e..f30b67b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 36f05c7..890720d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index c722287..a722a70 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ea810a3..a636532 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 81c68d0..19a079b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260711.n.0@sha256:a1f947b15105b43064e4ff68828a5f0239695bd5713cb8fb77c4fc54a3902d27 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 22c2ece4fa0f11279c74c64a454584abaef52696 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 14 Jul 2026 00:01:26 +0000 Subject: [PATCH 638/697] chore(deps): update fedora rawhide repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 462e6c9..ac221dd 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f30b67b..6569ba9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 890720d..0d71576 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index a722a70..84bc8fb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index a636532..8db8e51 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 19a079b..01fb883 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:959dc1e7ca5d7e341c841521e82c8e2022f933869421672e743c70751fbaceed + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 894695b4c2869fc878e718a20a6d2551e0378776 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 14 Jul 2026 16:01:55 +0000 Subject: [PATCH 639/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260714.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index ac221dd..48d2feb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 6569ba9..36b3f16 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 0d71576..a90b9c7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 84bc8fb..0cb3cf5 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 8db8e51..3fab82c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 01fb883..69e9bfa 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260713.n.0@sha256:ddc1fe416285db5206be8abd8e3a8d0b9e009a9b5e6034be08867d10eb7ff9e4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 17764bf0ea9486d5652177beb5f73b5c9394dddb Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 15 Jul 2026 04:01:09 +0000 Subject: [PATCH 640/697] chore(deps): update fedora 43 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 60cd42d..cbc846a 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 50cfe6a..d44d4f4 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 0fdf3a2..efb72fd 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 7d43ff5..9ab5e5e 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 4adb5e3..3c85a78 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 9a5a285..746ae98 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index df8e57b..735ff80 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index c46fd43..6ae8a90 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 1556c5b..169f96a 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From b59744079ad4905219a0f76e963f859422c017ce Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 15 Jul 2026 04:01:20 +0000 Subject: [PATCH 641/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 1b84228..4c7cdcf 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index d5d18d5..a194c57 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 4b3059f..ad52481 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 8d14ac8..d998df4 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 06c9240..428ebaf 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 50160c4..c82ef37 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 0d1f9a0902eae730989346563b10a5697272000b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 15 Jul 2026 04:01:30 +0000 Subject: [PATCH 642/697] chore(deps): update fedora rawhide bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 48d2feb..d02adca 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 36b3f16..d07790e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index a90b9c7..1a9e795 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 0cb3cf5..77f9466 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 3fab82c..8fb9bab 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 69e9bfa..62db7f7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:48b01561961a9f47aeb8f33a267cc03ec35425e71b330e1e64bb5b2e4bd9f846 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 027398c0be05dc9cd9c06bf8739624d4acd8b323 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 16 Jul 2026 00:02:07 +0000 Subject: [PATCH 643/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260715.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index d02adca..dd45704 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index d07790e..7797eb7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 1a9e795..23c213b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 77f9466..c4083e2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 8fb9bab..b5b57bc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 62db7f7..7b6bc64 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260714.n.0@sha256:c166f314291359faea121c246db281e91db4aa9bc21a5ecceedb901f41553751 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From ebf9dfd213cc2ea6012fbcb9d76009564255022d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 16 Jul 2026 20:01:54 +0000 Subject: [PATCH 644/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260716.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index dd45704..656e4f6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 7797eb7..35a39c9 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 23c213b..35f0ca6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index c4083e2..f448c65 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index b5b57bc..c2262fb 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 7b6bc64..b6b2254 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260715.n.0@sha256:d867a82f4608906fdd85346d90f6e8b38a621b6d6fdb7fcfe35f8ce86aedba43 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From e87589e6356433c7e4f9daa56e2b69524b9ce35d Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Mon, 16 Feb 2026 09:27:15 -0500 Subject: [PATCH 645/697] Add fedora-eln manifest for centos-eln Add MANIFEST=fedora-eln: minimal-plus base for Enterprise Linux Next (ELN), using distro fedora and ELN repos at build time. The resulting image is published as centos-eln. Ref: https://github.com/fedora-eln/eln/issues/214 Co-authored-by: Cursor --- README.md | 2 ++ eln.yaml | 3 +++ eln/manifest.yaml | 8 ++++++++ fedora-eln.yaml | 3 +++ fedora-includes/eln.yaml | 7 +++++++ install-manifests | 2 +- 6 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 eln.yaml create mode 100644 eln/manifest.yaml create mode 100644 fedora-eln.yaml create mode 100644 fedora-includes/eln.yaml diff --git a/README.md b/README.md index 9df7915..7e036b1 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,8 @@ interface, but may be used by other images in Fedora. **standard** inherits from **minimal-plus** and **minimal-plus** in turn inherit from **minimal**. +- **eln** (manifest `fedora-eln`): Minimal-plus base image for Enterprise Linux Next (ELN). Uses distro `fedora` and inherits from minimal-plus; built with ELN repos. The image produced by this manifest is published as **centos-eln**. + All non-trivial changes to **minimal** and **minimal-plus** should be ACKed by at least one stakeholder of each Fedora variant WGs. diff --git a/eln.yaml b/eln.yaml new file mode 100644 index 0000000..be69859 --- /dev/null +++ b/eln.yaml @@ -0,0 +1,3 @@ +include: + - fedora-includes/eln.yaml + - eln/manifest.yaml diff --git a/eln/manifest.yaml b/eln/manifest.yaml new file mode 100644 index 0000000..378cee8 --- /dev/null +++ b/eln/manifest.yaml @@ -0,0 +1,8 @@ +metadata: + summary: | + Minimal-plus bootc base image for Enterprise Linux Next (ELN). + This manifest is the source for the image published as centos-eln. + ELN is the Fedora package set (rawhide sources, ELN buildroot/compose). + +include: + - ../minimal-plus/manifest.yaml diff --git a/fedora-eln.yaml b/fedora-eln.yaml new file mode 100644 index 0000000..be69859 --- /dev/null +++ b/fedora-eln.yaml @@ -0,0 +1,3 @@ +include: + - fedora-includes/eln.yaml + - eln/manifest.yaml diff --git a/fedora-includes/eln.yaml b/fedora-includes/eln.yaml new file mode 100644 index 0000000..4b1bcf4 --- /dev/null +++ b/fedora-includes/eln.yaml @@ -0,0 +1,7 @@ +# ELN uses the same distro variable as Fedora: ELN is a compose of Fedora +# Rawhide sources (see docs.fedoraproject.org/en-US/eln/). Repos come from +# REPOS_IMAGE at build time; we do not add fedora-repos-archive here. +variables: + distro: "fedora" + +packages: [] diff --git a/install-manifests b/install-manifests index f36a442..2d93fae 100755 --- a/install-manifests +++ b/install-manifests @@ -4,7 +4,7 @@ set -xeuo pipefail # into their installed location. manifestdir=${1:-/usr/share/doc/bootc-base-imagectl/manifests} mkdir -p "$manifestdir/" -for image in minimal standard minimal-plus iot; do +for image in minimal standard minimal-plus iot eln; do # Embed the generic defaults cp -a $image $manifestdir/ # And the top-level Fedora-specific manifests From 4f8a763ca52308b6018d8f45a1197570e4e5bd72 Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Tue, 24 Feb 2026 23:59:22 +0000 Subject: [PATCH 646/697] lgtm, thanks Yaakov! --- README.md | 2 +- eln/manifest.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e036b1..01ced47 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ interface, but may be used by other images in Fedora. **standard** inherits from **minimal-plus** and **minimal-plus** in turn inherit from **minimal**. -- **eln** (manifest `fedora-eln`): Minimal-plus base image for Enterprise Linux Next (ELN). Uses distro `fedora` and inherits from minimal-plus; built with ELN repos. The image produced by this manifest is published as **centos-eln**. +- **eln** (manifest `fedora-eln`): Minimal-plus base image for Enterprise Linux Next (ELN). Uses distro `fedora` and inherits from minimal-plus; built with ELN repos. The image produced by this manifest is published as **fedora-eln**. All non-trivial changes to **minimal** and **minimal-plus** should be ACKed by at least one stakeholder of each Fedora variant WGs. diff --git a/eln/manifest.yaml b/eln/manifest.yaml index 378cee8..251fb36 100644 --- a/eln/manifest.yaml +++ b/eln/manifest.yaml @@ -1,7 +1,7 @@ metadata: summary: | Minimal-plus bootc base image for Enterprise Linux Next (ELN). - This manifest is the source for the image published as centos-eln. + This manifest is the source for the image published as fedora-eln. ELN is the Fedora package set (rawhide sources, ELN buildroot/compose). include: From bb410eecc87c3e7a7969bc92762fa58509f70ea4 Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Tue, 24 Feb 2026 19:46:43 -0500 Subject: [PATCH 647/697] added the repos to the manifest [skip ci] --- eln.yaml | 2 ++ fedora-eln.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/eln.yaml b/eln.yaml index be69859..0bfbc9e 100644 --- a/eln.yaml +++ b/eln.yaml @@ -1,3 +1,5 @@ +repos: + - fedora-eln include: - fedora-includes/eln.yaml - eln/manifest.yaml diff --git a/fedora-eln.yaml b/fedora-eln.yaml index be69859..0bfbc9e 100644 --- a/fedora-eln.yaml +++ b/fedora-eln.yaml @@ -1,3 +1,5 @@ +repos: + - fedora-eln include: - fedora-includes/eln.yaml - eln/manifest.yaml From fb712a62a27404d09f4548638d3db754374c1517 Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Tue, 10 Mar 2026 12:20:03 -0400 Subject: [PATCH 648/697] updated repos to corect names and made fedora-eln.yaml a simlink to eln.yaml --- eln.yaml | 3 ++- fedora-eln.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/eln.yaml b/eln.yaml index 0bfbc9e..84d3dae 100644 --- a/eln.yaml +++ b/eln.yaml @@ -1,5 +1,6 @@ repos: - - fedora-eln + - eln-baseos + - eln-appstream include: - fedora-includes/eln.yaml - eln/manifest.yaml diff --git a/fedora-eln.yaml b/fedora-eln.yaml index 0bfbc9e..84d3dae 100644 --- a/fedora-eln.yaml +++ b/fedora-eln.yaml @@ -1,5 +1,6 @@ repos: - - fedora-eln + - eln-baseos + - eln-appstream include: - fedora-includes/eln.yaml - eln/manifest.yaml From 61122b60f41658ed1ede87d392914a2a74e52b13 Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Thu, 12 Mar 2026 08:30:19 -0400 Subject: [PATCH 649/697] made it a symlink instead of a hard link --- eln.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) mode change 100644 => 120000 eln.yaml diff --git a/eln.yaml b/eln.yaml deleted file mode 100644 index 84d3dae..0000000 --- a/eln.yaml +++ /dev/null @@ -1,6 +0,0 @@ -repos: - - eln-baseos - - eln-appstream -include: - - fedora-includes/eln.yaml - - eln/manifest.yaml diff --git a/eln.yaml b/eln.yaml new file mode 120000 index 0000000..d35d04c --- /dev/null +++ b/eln.yaml @@ -0,0 +1 @@ +fedora-eln.yaml \ No newline at end of file From 39ec5299e99ec3f15044e662f0727e716f7a91da Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Tue, 17 Mar 2026 12:22:34 -0400 Subject: [PATCH 650/697] removed whitespace --- fedora-eln.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedora-eln.yaml b/fedora-eln.yaml index 84d3dae..12e224b 100644 --- a/fedora-eln.yaml +++ b/fedora-eln.yaml @@ -1,6 +1,6 @@ repos: - eln-baseos - - eln-appstream + - eln-appstream include: - fedora-includes/eln.yaml - eln/manifest.yaml From 972df8746e92016df36ac29fe71b01d30a80c9d5 Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Tue, 17 Mar 2026 20:20:45 -0400 Subject: [PATCH 651/697] Add Konflux pipeline for Fedora ELN (fedora-eln minimal-plus) - Add .tekton PipelineRuns: fedora-bootc-eln-minimal-plus (pull-request, push, renovate-push) - REPOS_IMAGE: fedora-bootc-eln-compose (digest placeholder until compose-images builds) - MANIFEST: fedora-eln - Renovate: add package rule for fedora-bootc-eln-compose Made-with: Cursor --- ...a-bootc-eln-minimal-plus-pull-request.yaml | 75 +++++++++++++++++++ .../fedora-bootc-eln-minimal-plus-push.yaml | 72 ++++++++++++++++++ ...-bootc-eln-minimal-plus-renovate-push.yaml | 75 +++++++++++++++++++ renovate.json | 11 +++ 4 files changed, 233 insertions(+) create mode 100644 .tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml create mode 100644 .tekton/fedora-bootc-eln-minimal-plus-push.yaml create mode 100644 .tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml diff --git a/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml new file mode 100644 index 0000000..0ee6ba7 --- /dev/null +++ b/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml @@ -0,0 +1,75 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/eln.yaml".pathChanged() || + "fedora-eln.yaml".pathChanged() || + "eln/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-eln + appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-eln-minimal-plus-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 + - MANIFEST=fedora-eln + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=eln + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus diff --git a/.tekton/fedora-bootc-eln-minimal-plus-push.yaml b/.tekton/fedora-bootc-eln-minimal-plus-push.yaml new file mode 100644 index 0000000..0acea72 --- /dev/null +++ b/.tekton/fedora-bootc-eln-minimal-plus-push.yaml @@ -0,0 +1,72 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-eln-minimal-plus-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/eln.yaml".pathChanged() || + "fedora-eln.yaml".pathChanged() || + "eln/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-eln + appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-eln-minimal-plus-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 + - MANIFEST=fedora-eln + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=eln + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus diff --git a/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml new file mode 100644 index 0000000..8443d16 --- /dev/null +++ b/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml @@ -0,0 +1,75 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch.startsWith("renovate/")) + ) && ( + ".tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/eln.yaml".pathChanged() || + "fedora-eln.yaml".pathChanged() || + "eln/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) && true == false + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-eln + appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + pipelines.appstudio.openshift.io/type: build + release.appstudio.openshift.io/auto-release: "false" + name: fedora-bootc-eln-minimal-plus-renovate-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 + - MANIFEST=fedora-eln + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=eln + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus diff --git a/renovate.json b/renovate.json index d3f8cc6..95e9f77 100644 --- a/renovate.json +++ b/renovate.json @@ -156,6 +156,17 @@ "rebaseWhen": "never", "additionalBranchPrefix": "", "automerge": true + }, + { + "matchPackageNames": [ + "/quay.io/bootc-devel/fedora-bootc-eln-compose/" + ], + "groupName": "Fedora ELN compose dependencies", + "groupSlug": "fedora-eln-compose-dependencies", + "schedule": [ + "at any time" + ], + "automerge": true } ] } From df6ef022e3248999ea9fa405b31832d6ee7beb66 Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Thu, 2 Jul 2026 10:39:10 -0400 Subject: [PATCH 652/697] install-manifests: Handle ELN as rawhide-only variant ELN manifests should only be installed on rawhide/main branch. When stable release branches are created (e.g., F44), the eln/ directory and fedora-eln.yaml should be manually removed from those branches to prevent ELN from being available on stable releases. This change installs ELN manifests conditionally rather than including 'eln' in the main loop, making it clearer that ELN is a special case that needs manual handling during release branching. Co-Authored-By: Claude Sonnet 4.5 --- install-manifests | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install-manifests b/install-manifests index 2d93fae..89c1b3b 100755 --- a/install-manifests +++ b/install-manifests @@ -4,7 +4,7 @@ set -xeuo pipefail # into their installed location. manifestdir=${1:-/usr/share/doc/bootc-base-imagectl/manifests} mkdir -p "$manifestdir/" -for image in minimal standard minimal-plus iot eln; do +for image in minimal standard minimal-plus iot; do # Embed the generic defaults cp -a $image $manifestdir/ # And the top-level Fedora-specific manifests @@ -16,6 +16,12 @@ for image in minimal standard minimal-plus iot eln; do # And the legacy `fedora-` prefixed names cp -a fedora-$image.yaml $manifestdir/ done +# ELN is rawhide-only and should be removed when stable branches are created +# (manually remove eln/ directory and fedora-eln.yaml when branching for new releases) +if [ -d eln ]; then + cp -a eln $manifestdir/ + cp -a fedora-eln.yaml $manifestdir/ +fi # Set the default ln -s fedora-standard.yaml $manifestdir/default.yaml # And install dependency manifests From 5c45fc79b8f93b7483d99740212ea15a5c71206a Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Thu, 2 Jul 2026 23:17:53 -0400 Subject: [PATCH 653/697] Switch ELN from minimal-plus to standard tier Per yselkowitz's feedback, ELN should use the standard profile to match rhel-bootc. This provides a more complete base image with enterprise features like SSSD authentication, NFS support, TPM2/Clevis integration, and better admin tooling. Changes: - eln/manifest.yaml: inherit from standard instead of minimal-plus - README.md: update ELN description to reflect standard tier - Rename Tekton pipelines: fedora-bootc-eln-minimal-plus-* -> fedora-bootc-eln-standard-* - Update pipeline triggers to include standard.yaml and standard/ paths Co-Authored-By: Claude Sonnet 4.5 --- ...l => fedora-bootc-eln-standard-pull-request.yaml} | 12 +++++++----- ...push.yaml => fedora-bootc-eln-standard-push.yaml} | 12 +++++++----- ... => fedora-bootc-eln-standard-renovate-push.yaml} | 12 +++++++----- README.md | 2 +- eln/manifest.yaml | 4 ++-- 5 files changed, 24 insertions(+), 18 deletions(-) rename .tekton/{fedora-bootc-eln-minimal-plus-pull-request.yaml => fedora-bootc-eln-standard-pull-request.yaml} (86%) rename .tekton/{fedora-bootc-eln-minimal-plus-push.yaml => fedora-bootc-eln-standard-push.yaml} (86%) rename .tekton/{fedora-bootc-eln-minimal-plus-renovate-push.yaml => fedora-bootc-eln-standard-renovate-push.yaml} (87%) diff --git a/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-eln-standard-pull-request.yaml similarity index 86% rename from .tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml rename to .tekton/fedora-bootc-eln-standard-pull-request.yaml index 0ee6ba7..f7a3adc 100644 --- a/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-eln-standard-pull-request.yaml @@ -12,13 +12,15 @@ metadata: ( (event == "pull_request" && target_branch == "main") ) && ( - ".tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || "fedora-includes/eln.yaml".pathChanged() || "fedora-eln.yaml".pathChanged() || "eln/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() || "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() || "minimal.yaml".pathChanged() || @@ -28,9 +30,9 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + appstudio.openshift.io/component: fedora-bootc-eln-standard pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-eln-minimal-plus-on-pull-request + name: fedora-bootc-eln-standard-on-pull-request spec: params: - name: git-url @@ -56,7 +58,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:on-pr-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:on-pr-{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -72,4 +74,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus + serviceAccountName: build-pipeline-fedora-bootc-eln-standard diff --git a/.tekton/fedora-bootc-eln-minimal-plus-push.yaml b/.tekton/fedora-bootc-eln-standard-push.yaml similarity index 86% rename from .tekton/fedora-bootc-eln-minimal-plus-push.yaml rename to .tekton/fedora-bootc-eln-standard-push.yaml index 0acea72..b2cd6b6 100644 --- a/.tekton/fedora-bootc-eln-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-push.yaml @@ -11,13 +11,15 @@ metadata: ( (event == "push" && target_branch == "main") ) && ( - ".tekton/fedora-bootc-eln-minimal-plus-push.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || "fedora-includes/eln.yaml".pathChanged() || "fedora-eln.yaml".pathChanged() || "eln/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() || "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() || "minimal.yaml".pathChanged() || @@ -27,9 +29,9 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + appstudio.openshift.io/component: fedora-bootc-eln-standard pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-eln-minimal-plus-on-push + name: fedora-bootc-eln-standard-on-push spec: params: - name: git-url @@ -53,7 +55,7 @@ spec: - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 - MANIFEST=fedora-eln - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -69,4 +71,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus + serviceAccountName: build-pipeline-fedora-bootc-eln-standard diff --git a/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml similarity index 87% rename from .tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml rename to .tekton/fedora-bootc-eln-standard-renovate-push.yaml index 8443d16..8f5f18a 100644 --- a/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml @@ -11,13 +11,15 @@ metadata: ( (event == "push" && target_branch.startsWith("renovate/")) ) && ( - ".tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-standard-renovate-push.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || "fedora-includes/eln.yaml".pathChanged() || "fedora-eln.yaml".pathChanged() || "eln/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() || "minimal-plus.hidden.yaml".pathChanged() || "minimal-plus/***".pathChanged() || "minimal.yaml".pathChanged() || @@ -27,10 +29,10 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + appstudio.openshift.io/component: fedora-bootc-eln-standard pipelines.appstudio.openshift.io/type: build release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-eln-minimal-plus-renovate-on-push + name: fedora-bootc-eln-standard-renovate-on-push spec: params: - name: git-url @@ -56,7 +58,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -72,4 +74,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus + serviceAccountName: build-pipeline-fedora-bootc-eln-standard diff --git a/README.md b/README.md index 01ced47..11a2fb3 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ interface, but may be used by other images in Fedora. **standard** inherits from **minimal-plus** and **minimal-plus** in turn inherit from **minimal**. -- **eln** (manifest `fedora-eln`): Minimal-plus base image for Enterprise Linux Next (ELN). Uses distro `fedora` and inherits from minimal-plus; built with ELN repos. The image produced by this manifest is published as **fedora-eln**. +- **eln** (manifest `fedora-eln`): Standard base image for Enterprise Linux Next (ELN). Uses distro `fedora` and inherits from standard; built with ELN repos. The image produced by this manifest is published as **fedora-eln**. All non-trivial changes to **minimal** and **minimal-plus** should be ACKed by at least one stakeholder of each Fedora variant WGs. diff --git a/eln/manifest.yaml b/eln/manifest.yaml index 251fb36..b6d41de 100644 --- a/eln/manifest.yaml +++ b/eln/manifest.yaml @@ -1,8 +1,8 @@ metadata: summary: | - Minimal-plus bootc base image for Enterprise Linux Next (ELN). + Standard bootc base image for Enterprise Linux Next (ELN). This manifest is the source for the image published as fedora-eln. ELN is the Fedora package set (rawhide sources, ELN buildroot/compose). include: - - ../minimal-plus/manifest.yaml + - ../standard/manifest.yaml From def48831ee42fc11942ec71ae96352ebc0cc9bdf Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Thu, 2 Jul 2026 23:25:08 -0400 Subject: [PATCH 654/697] Revert Tekton component names to minimal-plus Keep the existing component name (fedora-bootc-eln-minimal-plus) to match the tenant configuration, while the manifest continues to build the standard tier. The component name is just an internal identifier - the actual image tier is controlled by the manifest. This allows the build to succeed with the existing tenant setup. A follow-up MR can rename the component once the tenant configuration is updated. Note: Pipeline triggers still watch standard.yaml and standard/ paths since ELN now inherits from standard. Co-Authored-By: Claude Sonnet 4.5 --- ...=> fedora-bootc-eln-minimal-plus-pull-request.yaml} | 10 +++++----- ...sh.yaml => fedora-bootc-eln-minimal-plus-push.yaml} | 10 +++++----- ...> fedora-bootc-eln-minimal-plus-renovate-push.yaml} | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) rename .tekton/{fedora-bootc-eln-standard-pull-request.yaml => fedora-bootc-eln-minimal-plus-pull-request.yaml} (89%) rename .tekton/{fedora-bootc-eln-standard-push.yaml => fedora-bootc-eln-minimal-plus-push.yaml} (89%) rename .tekton/{fedora-bootc-eln-standard-renovate-push.yaml => fedora-bootc-eln-minimal-plus-renovate-push.yaml} (89%) diff --git a/.tekton/fedora-bootc-eln-standard-pull-request.yaml b/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml similarity index 89% rename from .tekton/fedora-bootc-eln-standard-pull-request.yaml rename to .tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml index f7a3adc..85e6457 100644 --- a/.tekton/fedora-bootc-eln-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml @@ -12,7 +12,7 @@ metadata: ( (event == "pull_request" && target_branch == "main") ) && ( - ".tekton/fedora-bootc-eln-standard-pull-request.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || @@ -30,9 +30,9 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-standard + appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-eln-standard-on-pull-request + name: fedora-bootc-eln-minimal-plus-on-pull-request spec: params: - name: git-url @@ -58,7 +58,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:on-pr-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:on-pr-{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -74,4 +74,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-standard + serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus diff --git a/.tekton/fedora-bootc-eln-standard-push.yaml b/.tekton/fedora-bootc-eln-minimal-plus-push.yaml similarity index 89% rename from .tekton/fedora-bootc-eln-standard-push.yaml rename to .tekton/fedora-bootc-eln-minimal-plus-push.yaml index b2cd6b6..00089ec 100644 --- a/.tekton/fedora-bootc-eln-standard-push.yaml +++ b/.tekton/fedora-bootc-eln-minimal-plus-push.yaml @@ -11,7 +11,7 @@ metadata: ( (event == "push" && target_branch == "main") ) && ( - ".tekton/fedora-bootc-eln-standard-push.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-minimal-plus-push.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || @@ -29,9 +29,9 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-standard + appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-eln-standard-on-push + name: fedora-bootc-eln-minimal-plus-on-push spec: params: - name: git-url @@ -55,7 +55,7 @@ spec: - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 - MANIFEST=fedora-eln - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -71,4 +71,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-standard + serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus diff --git a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml b/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml similarity index 89% rename from .tekton/fedora-bootc-eln-standard-renovate-push.yaml rename to .tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml index 8f5f18a..7df2ba1 100644 --- a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml @@ -11,7 +11,7 @@ metadata: ( (event == "push" && target_branch.startsWith("renovate/")) ) && ( - ".tekton/fedora-bootc-eln-standard-renovate-push.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || @@ -29,10 +29,10 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-standard + appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus pipelines.appstudio.openshift.io/type: build release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-eln-standard-renovate-on-push + name: fedora-bootc-eln-minimal-plus-renovate-on-push spec: params: - name: git-url @@ -58,7 +58,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -74,4 +74,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-standard + serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus From 44f36d4f66ba29a6d58806a60f28a26da052142f Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Thu, 2 Jul 2026 23:52:31 -0400 Subject: [PATCH 655/697] Rename Tekton components back to standard Revert commit 4556853 which temporarily used minimal-plus naming. Now that the tenants-config MR will add the standard component, we can use the correct naming throughout. This creates the fedora-bootc-eln-standard component which matches the standard tier manifest that ELN builds. Depends on tenants-config MR to add ELN standard component. Co-Authored-By: Claude Sonnet 4.5 --- ...aml => fedora-bootc-eln-standard-pull-request.yaml} | 10 +++++----- ...s-push.yaml => fedora-bootc-eln-standard-push.yaml} | 10 +++++----- ...ml => fedora-bootc-eln-standard-renovate-push.yaml} | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) rename .tekton/{fedora-bootc-eln-minimal-plus-pull-request.yaml => fedora-bootc-eln-standard-pull-request.yaml} (89%) rename .tekton/{fedora-bootc-eln-minimal-plus-push.yaml => fedora-bootc-eln-standard-push.yaml} (89%) rename .tekton/{fedora-bootc-eln-minimal-plus-renovate-push.yaml => fedora-bootc-eln-standard-renovate-push.yaml} (89%) diff --git a/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-eln-standard-pull-request.yaml similarity index 89% rename from .tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml rename to .tekton/fedora-bootc-eln-standard-pull-request.yaml index 85e6457..f7a3adc 100644 --- a/.tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-eln-standard-pull-request.yaml @@ -12,7 +12,7 @@ metadata: ( (event == "pull_request" && target_branch == "main") ) && ( - ".tekton/fedora-bootc-eln-minimal-plus-pull-request.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-standard-pull-request.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || @@ -30,9 +30,9 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + appstudio.openshift.io/component: fedora-bootc-eln-standard pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-eln-minimal-plus-on-pull-request + name: fedora-bootc-eln-standard-on-pull-request spec: params: - name: git-url @@ -58,7 +58,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:on-pr-{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:on-pr-{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -74,4 +74,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus + serviceAccountName: build-pipeline-fedora-bootc-eln-standard diff --git a/.tekton/fedora-bootc-eln-minimal-plus-push.yaml b/.tekton/fedora-bootc-eln-standard-push.yaml similarity index 89% rename from .tekton/fedora-bootc-eln-minimal-plus-push.yaml rename to .tekton/fedora-bootc-eln-standard-push.yaml index 00089ec..b2cd6b6 100644 --- a/.tekton/fedora-bootc-eln-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-push.yaml @@ -11,7 +11,7 @@ metadata: ( (event == "push" && target_branch == "main") ) && ( - ".tekton/fedora-bootc-eln-minimal-plus-push.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-standard-push.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || @@ -29,9 +29,9 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + appstudio.openshift.io/component: fedora-bootc-eln-standard pipelines.appstudio.openshift.io/type: build - name: fedora-bootc-eln-minimal-plus-on-push + name: fedora-bootc-eln-standard-on-push spec: params: - name: git-url @@ -55,7 +55,7 @@ spec: - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 - MANIFEST=fedora-eln - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -71,4 +71,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus + serviceAccountName: build-pipeline-fedora-bootc-eln-standard diff --git a/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml similarity index 89% rename from .tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml rename to .tekton/fedora-bootc-eln-standard-renovate-push.yaml index 7df2ba1..8f5f18a 100644 --- a/.tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml @@ -11,7 +11,7 @@ metadata: ( (event == "push" && target_branch.startsWith("renovate/")) ) && ( - ".tekton/fedora-bootc-eln-minimal-plus-renovate-push.yaml".pathChanged() || + ".tekton/fedora-bootc-eln-standard-renovate-push.yaml".pathChanged() || "Containerfile".pathChanged() || "bootc-base-imagectl".pathChanged() || "install-manifests".pathChanged() || @@ -29,10 +29,10 @@ metadata: creationTimestamp: null labels: appstudio.openshift.io/application: fedora-bootc-eln - appstudio.openshift.io/component: fedora-bootc-eln-minimal-plus + appstudio.openshift.io/component: fedora-bootc-eln-standard pipelines.appstudio.openshift.io/type: build release.appstudio.openshift.io/auto-release: "false" - name: fedora-bootc-eln-minimal-plus-renovate-on-push + name: fedora-bootc-eln-standard-renovate-on-push spec: params: - name: git-url @@ -58,7 +58,7 @@ spec: - name: image-expires-after value: 5d - name: output-image - value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-minimal-plus:{{revision}} + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} - name: labels value: - org.opencontainers.image.version=eln @@ -74,4 +74,4 @@ spec: timeouts: pipeline: 6h taskRunTemplate: - serviceAccountName: build-pipeline-fedora-bootc-eln-minimal-plus + serviceAccountName: build-pipeline-fedora-bootc-eln-standard From cfd933bde9caaec9d1cfd9c92c9a595c3047844f Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Fri, 24 Jul 2026 17:29:41 -0400 Subject: [PATCH 656/697] Update ELN REPOS_IMAGE and pipeline bundle to current versions Co-Authored-By: Claude Opus 4.6 --- .tekton/fedora-bootc-eln-standard-pull-request.yaml | 4 ++-- .tekton/fedora-bootc-eln-standard-push.yaml | 4 ++-- .tekton/fedora-bootc-eln-standard-renovate-push.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-eln-standard-pull-request.yaml b/.tekton/fedora-bootc-eln-standard-pull-request.yaml index f7a3adc..5cf2b9f 100644 --- a/.tekton/fedora-bootc-eln-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-eln-standard-pull-request.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260724.n.1@sha256:270fac959f81d1bf507b61889bc386dde444d5de0bd30ef258a5557fb00eb9ff - MANIFEST=fedora-eln - name: image-expires-after value: 5d @@ -65,7 +65,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:c587d9400c89e21225fee03a080dcb0816919d39770b6af0cd6f990c7f8404b8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-eln-standard-push.yaml b/.tekton/fedora-bootc-eln-standard-push.yaml index b2cd6b6..46956f3 100644 --- a/.tekton/fedora-bootc-eln-standard-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-push.yaml @@ -52,7 +52,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260724.n.1@sha256:270fac959f81d1bf507b61889bc386dde444d5de0bd30ef258a5557fb00eb9ff - MANIFEST=fedora-eln - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} @@ -62,7 +62,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:c587d9400c89e21225fee03a080dcb0816919d39770b6af0cd6f990c7f8404b8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml index 8f5f18a..b0f8cc5 100644 --- a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-ELN-20260317.n.0@sha256:0000000000000000000000000000000000000000000000000000000000000001 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260724.n.1@sha256:270fac959f81d1bf507b61889bc386dde444d5de0bd30ef258a5557fb00eb9ff - MANIFEST=fedora-eln - name: image-expires-after value: 5d @@ -65,7 +65,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:d29a4d1bc4f331a327e23d96ba48e4cdd2d8e732078faf6970dd9657e9b817e6 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:c587d9400c89e21225fee03a080dcb0816919d39770b6af0cd6f990c7f8404b8 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From bc5ad778870a077c5d2a0646e506fa08d5e0c99d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 25 Jul 2026 00:01:48 +0000 Subject: [PATCH 657/697] chore(deps): update fedora rawhide repos_image to fedora-rawhide-20260724.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 656e4f6..af41a6e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 35a39c9..5e253ef 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 35f0ca6..dde9b6f 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f448c65..67caed2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c2262fb..18755be 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b6b2254..afc219f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260716.n.0@sha256:d112b6f05e91248beae6e1fb93110ead27bdb03ee8c97547cb8e8979420065a5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From ed0841061fd8b291c2adf7f1c8a342c7cd9bb13b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 25 Jul 2026 04:01:33 +0000 Subject: [PATCH 658/697] chore(deps): update fedora rawhide bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 656e4f6..29a1225 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 35a39c9..e0942a3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 35f0ca6..9cbea90 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f448c65..7f5a794 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index c2262fb..49bdbff 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index b6b2254..3a910d4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 60d336792351e84a32859a8ffea88cb70d5d1e4d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 25 Jul 2026 08:01:13 +0000 Subject: [PATCH 659/697] chore(deps): update fedora rawhide repos_image Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index f6079fd..42d396e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index f0068e6..4aeae6e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index b4c7df6..91cea46 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 712fb57..947486e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index ebd6e78..27ea5bc 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index a33b3dc..2977ae4 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:c7c76ff0927d3bd3d74f2a49e3a10d7f38b7c8c5d99c29466beed097650a349e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From f79e07d4f40e7f4211d870e1a99853754e4d0b7b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 25 Jul 2026 12:02:08 +0000 Subject: [PATCH 660/697] chore(deps): update fedora 44 repos_image to fedora-44-updates-20260725.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 24d1365..420b7cc 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 2ec0167..0089f34 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 935a239..8ed0ab7 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index bdd6c22..25c14b1 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 250f058..0ea97e1 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 6b4e9b0..802ff19 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260710.0@sha256:064619c444f1caad1a2bea337ef498a2ad4bc1baa97cbdd501df6449cbee8804 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From de836a5412ceec71190ef35f0c08731c0221edf9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 25 Jul 2026 16:01:15 +0000 Subject: [PATCH 661/697] chore(deps): update fedora 43 repos_image to fedora-43-updates-20260725.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index cbc846a..830d88e 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index d44d4f4..4ff6827 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index efb72fd..0fd3749 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 9ab5e5e..95f762b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 3c85a78..4831b0b 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 746ae98..8b8aab8 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 735ff80..5a5c8ca 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 6ae8a90..04a7eae 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 169f96a..9b4ae71 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260701.0@sha256:623971aec9bf246a6d06934725d8306068a3dde9928f3c7f0ac914fe9701118a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From e15669a67ea0109e7eb2a042fc001a9998de61b9 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 25 Jul 2026 20:01:29 +0000 Subject: [PATCH 662/697] chore(deps): update fedora 44 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 420b7cc..f79a06c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 0089f34..dd7904c 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 8ed0ab7..e404bd4 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 25c14b1..d5de994 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 0ea97e1..6ab9395 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 802ff19..d3b6ed2 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 5a323ec850d42e8d219976c8e8f28ad4db124e9c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 26 Jul 2026 00:01:01 +0000 Subject: [PATCH 663/697] chore(deps): update fedora 43 bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index 830d88e..cc6434e 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 4ff6827..6d0055a 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 0fd3749..ed9d855 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index 95f762b..eab59d0 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 4831b0b..9b8e8b5 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 8b8aab8..243048d 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 5a5c8ca..1dfa17c 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 04a7eae..4e5c386 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9b4ae71..d05091c 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:5d85d41492dd45ba9523ae39092c993e524faf0e75e27bbb1f6f4db397638484 + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 28a12181a3ad41d076e3f9d119093765abac9d09 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 26 Jul 2026 04:01:56 +0000 Subject: [PATCH 664/697] chore(deps): update fedora rawhide bootc-pipeline Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 42d396e..a3777b2 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 4aeae6e..964764d 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 91cea46..4de36a4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 947486e..f55336b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 27ea5bc..e83d60c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 2977ae4..0cc5937 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:6cbc3b3e356d20d7c85561ae93ff9070f88b9ae39d9bf9aa2b02200ec4d87d9e + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From d2979f0bd34697a92e6911b51d9afd5e9a3bcc9b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 26 Jul 2026 12:01:17 +0000 Subject: [PATCH 665/697] Update Fedora 43 REPOS_IMAGE to Fedora-43-updates-20260726.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index cc6434e..f7df985 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 6d0055a..52f87dd 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index ed9d855..39022e0 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index eab59d0..f2bd6df 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 9b8e8b5..7329c6f 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 243048d..08b032f 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 1dfa17c..2e6b25d 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index 4e5c386..d165397 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index d05091c..9256ebd 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260725.0@sha256:2145e6dc27848b1b597c18b33109e5713869f40d64c20fbb94f4c81f985cf20d + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From e95794ba3a5a38f793a75cc786ef115646b24b65 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 26 Jul 2026 12:02:04 +0000 Subject: [PATCH 666/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260726.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index f79a06c..0e7bc98 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index dd7904c..bea8439 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index e404bd4..66640a7 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index d5de994..831f41e 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 6ab9395..6645e5c 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index d3b6ed2..7067af5 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260725.0@sha256:c8df66c66f7c1f4882abfc549db88d1061cfb1e6e80a8a9f5ea1c6e508a2f3b9 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From c22a5ac5847628cf02073cec86debd5976d41256 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 26 Jul 2026 16:01:19 +0000 Subject: [PATCH 667/697] Update Fedora ELN compose dependencies to Fedora-eln-20260726.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-eln-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-eln-standard-push.yaml | 2 +- .tekton/fedora-bootc-eln-standard-renovate-push.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.tekton/fedora-bootc-eln-standard-pull-request.yaml b/.tekton/fedora-bootc-eln-standard-pull-request.yaml index 5cf2b9f..a4f230a 100644 --- a/.tekton/fedora-bootc-eln-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-eln-standard-pull-request.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260724.n.1@sha256:270fac959f81d1bf507b61889bc386dde444d5de0bd30ef258a5557fb00eb9ff + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260726.n.0@sha256:09cd630843bf26befae377e3d957c06d9036ef220c5974c61d97d9bc9585a799 - MANIFEST=fedora-eln - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-eln-standard-push.yaml b/.tekton/fedora-bootc-eln-standard-push.yaml index 46956f3..f124084 100644 --- a/.tekton/fedora-bootc-eln-standard-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-push.yaml @@ -52,7 +52,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260724.n.1@sha256:270fac959f81d1bf507b61889bc386dde444d5de0bd30ef258a5557fb00eb9ff + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260726.n.0@sha256:09cd630843bf26befae377e3d957c06d9036ef220c5974c61d97d9bc9585a799 - MANIFEST=fedora-eln - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} diff --git a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml index b0f8cc5..acf37c4 100644 --- a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260724.n.1@sha256:270fac959f81d1bf507b61889bc386dde444d5de0bd30ef258a5557fb00eb9ff + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260726.n.0@sha256:09cd630843bf26befae377e3d957c06d9036ef220c5974c61d97d9bc9585a799 - MANIFEST=fedora-eln - name: image-expires-after value: 5d From 9fa57766808935043c6fd8b27339608080764c44 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 26 Jul 2026 16:02:06 +0000 Subject: [PATCH 668/697] Update Fedora Rawhide REPOS_IMAGE to Fedora-Rawhide-20260725.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a3777b2..a4aeb5e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 964764d..c4387cb 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 4de36a4..ff9f2d6 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index f55336b..4c267e3 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index e83d60c..66cc146 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 0cc5937..1b70eff 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260724.n.0@sha256:2e345ee6191dabb4aa632a2f00b7800847f7e3576fde88a31137c63923140477 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 466ff72b066600b3e97ef7318c63fc23bd940a2f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 27 Jul 2026 08:01:27 +0000 Subject: [PATCH 669/697] Update Fedora Rawhide REPOS_IMAGE to Fedora-Rawhide-20260726.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index a4aeb5e..1445e8b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index c4387cb..5f83590 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index ff9f2d6..634e080 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 4c267e3..cfb0f83 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 66cc146..57da946 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 1b70eff..be93d28 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260725.n.1@sha256:3ed4fb61c30fc21844763c24823c41474e046760935a453e5c54b0c86956c08b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 13ce0301b5f05a0b52e20b59c143ef661d1ae050 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 27 Jul 2026 11:36:15 +0200 Subject: [PATCH 670/697] Add a dependency on dbus to make systemd work --- minimal/bootc.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/minimal/bootc.yaml b/minimal/bootc.yaml index 63998f5..3975c14 100644 --- a/minimal/bootc.yaml +++ b/minimal/bootc.yaml @@ -2,7 +2,8 @@ packages: # systemd. Also name systemd-pam because it was dropped to a recommends # but we still want it for handling user logins/sessions. - - systemd systemd-pam + # dbus is required per https://bugzilla.redhat.com/show_bug.cgi?id=2507313 + - systemd systemd-pam dbus # bootc itself. - bootc # Required by bootc install, sgdisk has been replaced by Rust crate From 0294bb393a8a53bb363b97d4527c1ec16018524a Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 27 Jul 2026 16:01:42 +0000 Subject: [PATCH 671/697] Update Fedora 43 REPOS_IMAGE to Fedora-43-updates-20260727.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-43-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-iot-push.yaml | 2 +- .tekton/fedora-bootc-43-iot-renovate-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-43-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-minimal-push.yaml | 2 +- .tekton/fedora-bootc-43-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-43-standard-push.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tekton/fedora-bootc-43-iot-pull-request.yaml b/.tekton/fedora-bootc-43-iot-pull-request.yaml index f7df985..3d310ab 100644 --- a/.tekton/fedora-bootc-43-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-43-iot-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-iot-push.yaml b/.tekton/fedora-bootc-43-iot-push.yaml index 52f87dd..f027a70 100644 --- a/.tekton/fedora-bootc-43-iot-push.yaml +++ b/.tekton/fedora-bootc-43-iot-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-iot - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-iot:{{revision}} diff --git a/.tekton/fedora-bootc-43-iot-renovate-push.yaml b/.tekton/fedora-bootc-43-iot-renovate-push.yaml index 39022e0..00c653d 100644 --- a/.tekton/fedora-bootc-43-iot-renovate-push.yaml +++ b/.tekton/fedora-bootc-43-iot-renovate-push.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-iot - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml index f2bd6df..5d89391 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-plus-push.yaml b/.tekton/fedora-bootc-43-minimal-plus-push.yaml index 7329c6f..e5b62b3 100644 --- a/.tekton/fedora-bootc-43-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-43-minimal-pull-request.yaml b/.tekton/fedora-bootc-43-minimal-pull-request.yaml index 08b032f..9a7a0be 100644 --- a/.tekton/fedora-bootc-43-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-43-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-minimal-push.yaml b/.tekton/fedora-bootc-43-minimal-push.yaml index 2e6b25d..690e055 100644 --- a/.tekton/fedora-bootc-43-minimal-push.yaml +++ b/.tekton/fedora-bootc-43-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-43-standard-pull-request.yaml b/.tekton/fedora-bootc-43-standard-pull-request.yaml index d165397..adf02a7 100644 --- a/.tekton/fedora-bootc-43-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-43-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-43-standard-push.yaml b/.tekton/fedora-bootc-43-standard-push.yaml index 9256ebd..b89bb44 100644 --- a/.tekton/fedora-bootc-43-standard-push.yaml +++ b/.tekton/fedora-bootc-43-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260726.0@sha256:9cffa683b1b22cada9841d448adeba925db21d371a66c9ea938cbc85dba3762a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-43-compose:Fedora-43-updates-20260727.0@sha256:af8e3cce0623d775670a68562f69e1050805cdd5ba8799c05088e9acf3f372c0 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-43-standard:{{revision}} From c81f69c45144886fa0d0b8d6e3793f7302ba9fbf Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 27 Jul 2026 16:02:31 +0000 Subject: [PATCH 672/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260727.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 0e7bc98..a5b726a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index bea8439..7404660 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 66640a7..21efdaa 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 831f41e..31cdfdb 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 6645e5c..3d57046 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 7067af5..0046816 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260726.0@sha256:9b84dbde6b6ad4b80ce1f091e6b6e9770f5981b400f4a7d00970cc4f512d8b8b + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From a96faa4ed08574480d9d0987c9921b161b823685 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Jul 2026 00:01:45 +0000 Subject: [PATCH 673/697] Update Fedora ELN compose dependencies to Fedora-eln-20260727.n.1 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-eln-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-eln-standard-push.yaml | 2 +- .tekton/fedora-bootc-eln-standard-renovate-push.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.tekton/fedora-bootc-eln-standard-pull-request.yaml b/.tekton/fedora-bootc-eln-standard-pull-request.yaml index a4f230a..898f0c7 100644 --- a/.tekton/fedora-bootc-eln-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-eln-standard-pull-request.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260726.n.0@sha256:09cd630843bf26befae377e3d957c06d9036ef220c5974c61d97d9bc9585a799 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260727.n.1@sha256:eb42d6010fc3e521f264aae27e376b3406a266187dddfd3a8b34e4d82fadb731 - MANIFEST=fedora-eln - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-eln-standard-push.yaml b/.tekton/fedora-bootc-eln-standard-push.yaml index f124084..5b99adc 100644 --- a/.tekton/fedora-bootc-eln-standard-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-push.yaml @@ -52,7 +52,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260726.n.0@sha256:09cd630843bf26befae377e3d957c06d9036ef220c5974c61d97d9bc9585a799 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260727.n.1@sha256:eb42d6010fc3e521f264aae27e376b3406a266187dddfd3a8b34e4d82fadb731 - MANIFEST=fedora-eln - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} diff --git a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml index acf37c4..16f61f4 100644 --- a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260726.n.0@sha256:09cd630843bf26befae377e3d957c06d9036ef220c5974c61d97d9bc9585a799 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260727.n.1@sha256:eb42d6010fc3e521f264aae27e376b3406a266187dddfd3a8b34e4d82fadb731 - MANIFEST=fedora-eln - name: image-expires-after value: 5d From fe9f26eacc6406e0186bce127101991a6c747ba7 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 28 Jul 2026 00:01:54 +0000 Subject: [PATCH 674/697] Update Fedora Rawhide REPOS_IMAGE to Fedora-Rawhide-20260727.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 1445e8b..716e7a7 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 5f83590..80f3759 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 634e080..76801ff 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index cfb0f83..33316b1 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 57da946..bfff87f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index be93d28..894732f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260726.n.0@sha256:f005df26d951f0a106365f8a36222ba3b1ba3a4d8dfc9cf940501522178b532e + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 1b8ffac08de5a1be0e970afcabb920bcbcf0dd32 Mon Sep 17 00:00:00 2001 From: Jeff Ligon Date: Tue, 28 Jul 2026 10:41:32 -0400 Subject: [PATCH 675/697] eln: Ship 20-rhel.toml for RHEL-aligned bootc install defaults Sets XFS as the default root filesystem for `bootc install to-disk`, matching CentOS Stream 10 / RHEL bootc behavior. Co-Authored-By: Claude Opus 4.6 --- eln/20-rhel.toml | 2 ++ eln/bootc-install.yaml | 3 +++ eln/manifest.yaml | 1 + 3 files changed, 6 insertions(+) create mode 100644 eln/20-rhel.toml create mode 100644 eln/bootc-install.yaml diff --git a/eln/20-rhel.toml b/eln/20-rhel.toml new file mode 100644 index 0000000..32a278d --- /dev/null +++ b/eln/20-rhel.toml @@ -0,0 +1,2 @@ +[install] +root-fs-type = "xfs" diff --git a/eln/bootc-install.yaml b/eln/bootc-install.yaml new file mode 100644 index 0000000..59420d8 --- /dev/null +++ b/eln/bootc-install.yaml @@ -0,0 +1,3 @@ +add-files: + - - 20-rhel.toml + - /usr/lib/bootc/install/20-rhel.toml diff --git a/eln/manifest.yaml b/eln/manifest.yaml index b6d41de..a18488c 100644 --- a/eln/manifest.yaml +++ b/eln/manifest.yaml @@ -6,3 +6,4 @@ metadata: include: - ../standard/manifest.yaml + - bootc-install.yaml From 1ade0b9de993965f35d1849b9eba9eccfec80fe6 Mon Sep 17 00:00:00 2001 From: Joseph Marrero Corchado Date: Tue, 28 Jul 2026 13:17:17 -0400 Subject: [PATCH 676/697] standard: Move clevis-pin-tpm2 to arch-specific packages TPM2 hardware is only on x86_64 and aarch64. Move clevis-pin-tpm2 from the generic packages list to packages-x86_64 and packages-aarch64. Make the dracut config conditional on the binary being present. Ref: https://redhat.atlassian.net/browse/RHEL-138232 Signed-off-by: Joseph Marrero Corchado --- standard/initramfs-full.yaml | 13 ++++++++++--- standard/manifest.yaml | 7 +++++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/standard/initramfs-full.yaml b/standard/initramfs-full.yaml index 381fe32..cc9179d 100644 --- a/standard/initramfs-full.yaml +++ b/standard/initramfs-full.yaml @@ -7,7 +7,14 @@ postprocess: cat > /usr/lib/dracut/dracut.conf.d/30-bootc-standard.conf << 'EOF' add_dracutmodules+=" lvm crypt fips " EOF - cat > /usr/lib/dracut/dracut.conf.d/50-bootc-clevis.conf << 'EOF' - # Clevis in initramfs for TPM2-bound LUKS (needs clevis-dracut, clevis-pin-tpm2) - add_dracutmodules+=" clevis clevis-pin-tpm2 " + # Clevis in initramfs for LUKS auto-unlock. + # clevis-pin-tpm2 is only on x86_64/aarch64 (TPM2 hardware arches). + if test -x /usr/bin/clevis-pin-tpm2; then + cat > /usr/lib/dracut/dracut.conf.d/50-bootc-clevis.conf << 'EOF' + add_dracutmodules+=" clevis clevis-pin-tpm2 " EOF + else + cat > /usr/lib/dracut/dracut.conf.d/50-bootc-clevis.conf << 'EOF' + add_dracutmodules+=" clevis " + EOF + fi diff --git a/standard/manifest.yaml b/standard/manifest.yaml index da2a7cb..3cea76c 100644 --- a/standard/manifest.yaml +++ b/standard/manifest.yaml @@ -43,9 +43,8 @@ packages: - sos # Make Ansible "package_facts" builtin work by default - python3-rpm - # Initramfs Clevis + TPM2 pin for LUKS auto-unlock (dracut modules wired in initramfs-full.yaml) + # Initramfs Clevis for LUKS auto-unlock (dracut modules wired in initramfs-full.yaml) - clevis-dracut - - clevis-pin-tpm2 # Used by admins interactively - man-db @@ -53,6 +52,8 @@ packages: packages-x86_64: - irqbalance - WALinuxAgent-udev + # TPM2 pin for Clevis LUKS auto-unlock + - clevis-pin-tpm2 packages-ppc64le: - irqbalance - librtas @@ -61,6 +62,8 @@ packages-ppc64le: packages-aarch64: - irqbalance - WALinuxAgent-udev + # TPM2 pin for Clevis LUKS auto-unlock + - clevis-pin-tpm2 # Things we don't expect to ship on the host. We currently # have recommends: false so these could only come in via From 88ce26e446508f2655ff0b7d7c5e786aaa311232 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 29 Jul 2026 16:01:39 +0000 Subject: [PATCH 677/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260729.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index a5b726a..12d0d2d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 7404660..e711013 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 21efdaa..625cdba 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 31cdfdb..77d31be 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 3d57046..ed9c610 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 0046816..c9eefc9 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260727.0@sha256:3862c57eb588d9f0b7a7df173fba7e731abce79b21a0928ca097cd706ab8bb33 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 6bbbbed550a731fcf129afcf9c4c2782ad4cdaf3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 2 Aug 2026 12:01:33 +0000 Subject: [PATCH 678/697] Update Fedora ELN compose dependencies to Fedora-eln-20260802.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-eln-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-eln-standard-push.yaml | 2 +- .tekton/fedora-bootc-eln-standard-renovate-push.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.tekton/fedora-bootc-eln-standard-pull-request.yaml b/.tekton/fedora-bootc-eln-standard-pull-request.yaml index 898f0c7..b7a7f56 100644 --- a/.tekton/fedora-bootc-eln-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-eln-standard-pull-request.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260727.n.1@sha256:eb42d6010fc3e521f264aae27e376b3406a266187dddfd3a8b34e4d82fadb731 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260802.n.0@sha256:12f9b31a07ea270b65d5869a904fd1509c56b470df6c8f2586492fc0f006f213 - MANIFEST=fedora-eln - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-eln-standard-push.yaml b/.tekton/fedora-bootc-eln-standard-push.yaml index 5b99adc..b239205 100644 --- a/.tekton/fedora-bootc-eln-standard-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-push.yaml @@ -52,7 +52,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260727.n.1@sha256:eb42d6010fc3e521f264aae27e376b3406a266187dddfd3a8b34e4d82fadb731 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260802.n.0@sha256:12f9b31a07ea270b65d5869a904fd1509c56b470df6c8f2586492fc0f006f213 - MANIFEST=fedora-eln - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-eln-standard:{{revision}} diff --git a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml index 16f61f4..953bbd6 100644 --- a/.tekton/fedora-bootc-eln-standard-renovate-push.yaml +++ b/.tekton/fedora-bootc-eln-standard-renovate-push.yaml @@ -53,7 +53,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260727.n.1@sha256:eb42d6010fc3e521f264aae27e376b3406a266187dddfd3a8b34e4d82fadb731 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-eln-compose:Fedora-eln-20260802.n.0@sha256:12f9b31a07ea270b65d5869a904fd1509c56b470df6c8f2586492fc0f006f213 - MANIFEST=fedora-eln - name: image-expires-after value: 5d From 84f4de1422e0d3064359aed1d9c44e13bf2e98e3 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 3 Aug 2026 16:03:15 +0000 Subject: [PATCH 679/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260802.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 12d0d2d..7dbe2e0 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index e711013..b8710f5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 625cdba..89796b3 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 77d31be..17a7d28 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index ed9c610..0f5cb40 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index c9eefc9..c013ecc 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260729.0@sha256:e9c3879f9ed1b6568b36d087f2b3c5f633f439e117f5ac2da4b08da2097d0b1c + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 3724c3bb342fc84e96f96e53e0302800ccebd403 Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Tue, 18 Aug 2026 16:30:51 -0400 Subject: [PATCH 680/697] chore: add fedora-45.yaml for branching and update fedora-44.yaml Signed-off-by: Paul Whalen --- fedora-44.yaml | 3 ++- fedora-45.yaml | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 fedora-45.yaml diff --git a/fedora-44.yaml b/fedora-44.yaml index 3df73a4..912f7ea 100644 --- a/fedora-44.yaml +++ b/fedora-44.yaml @@ -2,5 +2,6 @@ # will be removed in the future. releasever: 44 repos: - - fedora-devel + - fedora + - fedora-updates include: fedora-bootc.yaml diff --git a/fedora-45.yaml b/fedora-45.yaml new file mode 100644 index 0000000..9c86c40 --- /dev/null +++ b/fedora-45.yaml @@ -0,0 +1,6 @@ +# NB: This treefile is used by the legacy pungi path only to build tier-1. It +# will be removed in the future. +releasever: 45 +repos: + - fedora-devel +include: fedora-bootc.yaml From 6cdb246f6534fbb11c15ceaad562ff17f7f6f849 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Fri, 21 Aug 2026 20:01:10 +0000 Subject: [PATCH 681/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260821.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 7dbe2e0..5bd8dbf 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index b8710f5..57cb315 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 89796b3..6ad6abe 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 17a7d28..889b0ec 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 0f5cb40..f3715b2 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index c013ecc..7f215d6 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260802.0@sha256:347bc339b9aa767b5c88bce66c4e995704f070e0e8f5c400b1e29be9e2103bc5 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 23454442308eb3bb1684f05f76d846fe0e2c818b Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 22 Aug 2026 00:01:20 +0000 Subject: [PATCH 682/697] Update Fedora 44 REPOS_IMAGE to f3209e3 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 5bd8dbf..12ad776 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 57cb315..44a3ea5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 6ad6abe..9cf9e5b 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 889b0ec..b829b7b 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index f3715b2..b3c79a7 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 7f215d6..57edc28 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:526e0644739c3cc0c9097dcbbb45b42d5735f41856b33241726a2c9206edf5f8 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From a6cdf6df24e5c11cbf27fef71dee3fff5f3f5619 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 22 Aug 2026 00:02:08 +0000 Subject: [PATCH 683/697] Update Fedora Rawhide REPOS_IMAGE to Fedora-Rawhide-20260821.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 716e7a7..2d85c48 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 80f3759..67e4668 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 76801ff..9b6a893 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 33316b1..38e3133 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index bfff87f..1705ae7 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 894732f..687210f 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260727.n.0@sha256:b69da90b3150af2b6221b2ac55021cfaa8ab734e8f70378b354037e3dff4407f + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From a04864eb89daa5abee2bd3b74232e34ccec0983d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 22 Aug 2026 04:01:53 +0000 Subject: [PATCH 684/697] Update Fedora 44 bootc build pipeline to 9eb1dec Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 12ad776..70cd6c8 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 44a3ea5..2096df9 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 9cf9e5b..d124f52 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index b829b7b..e9ea89a 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index b3c79a7..6dca25a 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 57edc28..72de068 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 902e198250c39e278409920f8f1ac9662ef95401 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 22 Aug 2026 12:02:01 +0000 Subject: [PATCH 685/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260822.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 12ad776..d06560d 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 44a3ea5..8d19c43 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 9cf9e5b..c8daa3a 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index b829b7b..1d7f761 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index b3c79a7..7e16417 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 57edc28..60f9c1b 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260821.0@sha256:f3209e3e67133f57959f25cdb34cbc26bd5ec2a11398268e551b0a812dd39232 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 0ae8dc5c9b63a606ea69090ec3bbe1d351f43b2d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 22 Aug 2026 20:01:38 +0000 Subject: [PATCH 686/697] Update Fedora Rawhide bootc build pipeline to 9eb1dec Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2d85c48..a22054a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 67e4668..e17d5ba 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9b6a893..ef4e372 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 38e3133..59d9944 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1705ae7..d68e0a1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 687210f..1227ae1 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 0584e6ee878898b16f51e0af7c6511be71901c9e Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sat, 22 Aug 2026 20:02:08 +0000 Subject: [PATCH 687/697] Update Fedora Rawhide REPOS_IMAGE to Fedora-Rawhide-20260822.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 2d85c48..39049c4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 67e4668..972d19a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 9b6a893..e378c1b 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 38e3133..4c79f68 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1705ae7..856623c 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 687210f..9f09637 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260821.n.0@sha256:97fbcfd5c427b61b9d53a29958490fb3a25d43306bd84bc8b810a8afae537a37 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From e998fe0e39b5d14f4388b814aeb919d97d5ae8da Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 23 Aug 2026 12:01:30 +0000 Subject: [PATCH 688/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260823.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 808e8ad..eee6321 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 735bb24..c8b12a5 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 2470c69..501b0d8 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index f22af97..01b572c 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 7518d2c..0888699 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 5a3e7a4..6fdf9f9 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260822.0@sha256:d1df679e059e17872bb4695cbd274aa9fe6ca1659580103f7c65f16691f51f20 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 677f8c2a33a1f316d06ba57746f9242983f8ae66 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Sun, 23 Aug 2026 20:01:50 +0000 Subject: [PATCH 689/697] Update Fedora Rawhide REPOS_IMAGE to Fedora-Rawhide-20260823.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 55bcdd3..0d5040e 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index a6571bb..75909a0 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 3a9447f..8fe0e67 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index d83924f..bb02bf4 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 1709314..7ba400b 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 5acd055..f9532da 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260822.n.0@sha256:5713b49bf71446541abc8f48f53a016b826560f5063c0a4bef160439096c82c4 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 246ed29d58dc71d9c3dcbc74b9bf402c43dbf612 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 24 Aug 2026 12:01:46 +0000 Subject: [PATCH 690/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260824.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index eee6321..54e4a4a 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index c8b12a5..78dce0f 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 501b0d8..21d2ea2 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index 01b572c..d15a653 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 0888699..256ab41 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index 6fdf9f9..f9ee2b3 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260823.0@sha256:8c067577f30f5738605215ec36e751acf9b65f38961ec989fd4d85e03ac902ca + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 1e7b69ed63b30e1114751622527b66358a2a8bbe Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Mon, 24 Aug 2026 20:02:36 +0000 Subject: [PATCH 691/697] Update Fedora Rawhide REPOS_IMAGE to Fedora-Rawhide-20260824.n.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-minimal-push.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 0d5040e..6da252c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260824.n.0@sha256:2bf25f551a2d4ed7291a8c1493d4c64384d060c2f193798b0d105323a37c6ba2 - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 75909a0..1f6fe7c 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260824.n.0@sha256:2bf25f551a2d4ed7291a8c1493d4c64384d060c2f193798b0d105323a37c6ba2 - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index 8fe0e67..afc144a 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260824.n.0@sha256:2bf25f551a2d4ed7291a8c1493d4c64384d060c2f193798b0d105323a37c6ba2 - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index bb02bf4..0aade97 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260824.n.0@sha256:2bf25f551a2d4ed7291a8c1493d4c64384d060c2f193798b0d105323a37c6ba2 - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 7ba400b..39b8a6d 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260824.n.0@sha256:2bf25f551a2d4ed7291a8c1493d4c64384d060c2f193798b0d105323a37c6ba2 - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index f9532da..563fb5e 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260823.n.0@sha256:5993927d51ef9455146a1e4513514db608c3550c04ab108818c1aae13445e4e7 + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-rawhide-compose:Fedora-Rawhide-20260824.n.0@sha256:2bf25f551a2d4ed7291a8c1493d4c64384d060c2f193798b0d105323a37c6ba2 - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} From 0a43b2e7ca02a78ce865c4aa6fcee3c4205217e0 Mon Sep 17 00:00:00 2001 From: Sean Thrailkill Date: Mon, 24 Aug 2026 18:15:51 -0400 Subject: [PATCH 692/697] .tekton: Add F45 base images --- .tekton/fedora-bootc-45-iot-pull-request.yaml | 73 ++++++++++++++++++ .tekton/fedora-bootc-45-iot-push.yaml | 70 +++++++++++++++++ ...ra-bootc-45-minimal-plus-pull-request.yaml | 73 ++++++++++++++++++ .../fedora-bootc-45-minimal-plus-push.yaml | 70 +++++++++++++++++ .../fedora-bootc-45-minimal-pull-request.yaml | 71 ++++++++++++++++++ .tekton/fedora-bootc-45-minimal-push.yaml | 68 +++++++++++++++++ ...fedora-bootc-45-standard-pull-request.yaml | 75 +++++++++++++++++++ .tekton/fedora-bootc-45-standard-push.yaml | 72 ++++++++++++++++++ ...fedora-bootc-rawhide-iot-pull-request.yaml | 2 +- .tekton/fedora-bootc-rawhide-iot-push.yaml | 2 +- ...otc-rawhide-minimal-plus-pull-request.yaml | 2 +- ...edora-bootc-rawhide-minimal-plus-push.yaml | 2 +- ...ra-bootc-rawhide-minimal-pull-request.yaml | 2 +- .../fedora-bootc-rawhide-minimal-push.yaml | 2 +- ...a-bootc-rawhide-standard-pull-request.yaml | 2 +- .../fedora-bootc-rawhide-standard-push.yaml | 2 +- 16 files changed, 580 insertions(+), 8 deletions(-) create mode 100644 .tekton/fedora-bootc-45-iot-pull-request.yaml create mode 100644 .tekton/fedora-bootc-45-iot-push.yaml create mode 100644 .tekton/fedora-bootc-45-minimal-plus-pull-request.yaml create mode 100644 .tekton/fedora-bootc-45-minimal-plus-push.yaml create mode 100644 .tekton/fedora-bootc-45-minimal-pull-request.yaml create mode 100644 .tekton/fedora-bootc-45-minimal-push.yaml create mode 100644 .tekton/fedora-bootc-45-standard-pull-request.yaml create mode 100644 .tekton/fedora-bootc-45-standard-push.yaml diff --git a/.tekton/fedora-bootc-45-iot-pull-request.yaml b/.tekton/fedora-bootc-45-iot-pull-request.yaml new file mode 100644 index 0000000..0475788 --- /dev/null +++ b/.tekton/fedora-bootc-45-iot-pull-request.yaml @@ -0,0 +1,73 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-iot-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-iot-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-iot + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-iot:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-iot diff --git a/.tekton/fedora-bootc-45-iot-push.yaml b/.tekton/fedora-bootc-45-iot-push.yaml new file mode 100644 index 0000000..65e6370 --- /dev/null +++ b/.tekton/fedora-bootc-45-iot-push.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-iot-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "iot.yaml".pathChanged() || + "iot/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-iot + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-iot-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-iot + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-iot:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:44d0e8034a19a1ced7817c117c9c15230def1f3e7941666a72a3e47919951f51 + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-iot diff --git a/.tekton/fedora-bootc-45-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-45-minimal-plus-pull-request.yaml new file mode 100644 index 0000000..879097f --- /dev/null +++ b/.tekton/fedora-bootc-45-minimal-plus-pull-request.yaml @@ -0,0 +1,73 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-minimal-plus-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-minimal-plus-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-minimal-plus + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-minimal-plus:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-minimal-plus diff --git a/.tekton/fedora-bootc-45-minimal-plus-push.yaml b/.tekton/fedora-bootc-45-minimal-plus-push.yaml new file mode 100644 index 0000000..76feacb --- /dev/null +++ b/.tekton/fedora-bootc-45-minimal-plus-push.yaml @@ -0,0 +1,70 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-minimal-plus-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-minimal-plus + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-minimal-plus-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-minimal-plus + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-minimal-plus:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-minimal-plus diff --git a/.tekton/fedora-bootc-45-minimal-pull-request.yaml b/.tekton/fedora-bootc-45-minimal-pull-request.yaml new file mode 100644 index 0000000..e176644 --- /dev/null +++ b/.tekton/fedora-bootc-45-minimal-pull-request.yaml @@ -0,0 +1,71 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-minimal-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-minimal-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-minimal + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-minimal:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-minimal diff --git a/.tekton/fedora-bootc-45-minimal-push.yaml b/.tekton/fedora-bootc-45-minimal-push.yaml new file mode 100644 index 0000000..e04ef02 --- /dev/null +++ b/.tekton/fedora-bootc-45-minimal-push.yaml @@ -0,0 +1,68 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-minimal-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-minimal + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-minimal-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-minimal + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-minimal:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-minimal diff --git a/.tekton/fedora-bootc-45-standard-pull-request.yaml b/.tekton/fedora-bootc-45-standard-pull-request.yaml new file mode 100644 index 0000000..740af3e --- /dev/null +++ b/.tekton/fedora-bootc-45-standard-pull-request.yaml @@ -0,0 +1,75 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "true" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "pull_request" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-standard-pull-request.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-standard-on-pull-request +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-standard + - name: image-expires-after + value: 5d + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-standard:on-pr-{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-standard diff --git a/.tekton/fedora-bootc-45-standard-push.yaml b/.tekton/fedora-bootc-45-standard-push.yaml new file mode 100644 index 0000000..b950119 --- /dev/null +++ b/.tekton/fedora-bootc-45-standard-push.yaml @@ -0,0 +1,72 @@ +apiVersion: tekton.dev/v1 +kind: PipelineRun +metadata: + annotations: + build.appstudio.openshift.io/repo: https://gitlab.com/fedora/bootc/base-images/-/tree/{{revision}} + build.appstudio.redhat.com/commit_sha: '{{revision}}' + build.appstudio.redhat.com/target_branch: '{{target_branch}}' + pipelinesascode.tekton.dev/cancel-in-progress: "false" + pipelinesascode.tekton.dev/max-keep-runs: "3" + pipelinesascode.tekton.dev/on-cel-expression: | + ( + (event == "push" && target_branch == "main") + ) && ( + ".tekton/fedora-bootc-45-standard-push.yaml".pathChanged() || + "Containerfile".pathChanged() || + "bootc-base-imagectl".pathChanged() || + "install-manifests".pathChanged() || + "fedora-includes/generic.yaml".pathChanged() || + "minimal.yaml".pathChanged() || + "minimal/***".pathChanged() || + "minimal-plus.hidden.yaml".pathChanged() || + "minimal-plus/***".pathChanged() || + "standard.yaml".pathChanged() || + "standard/***".pathChanged() + ) + test.appstudio.openshift.io/comment_strategy: "disable_all" + creationTimestamp: null + labels: + appstudio.openshift.io/application: fedora-bootc-45 + appstudio.openshift.io/component: fedora-bootc-45-standard + pipelines.appstudio.openshift.io/type: build + name: fedora-bootc-45-standard-on-push +spec: + params: + - name: git-url + value: '{{source_url}}' + - name: revision + value: '{{revision}}' + - name: build-platforms + value: + - linux/amd64 + - linux/arm64 + - linux/ppc64le + - linux/s390x + - name: dockerfile + value: Containerfile + - name: path-context + value: . + - name: privileged-nested + value: true + - name: build-args + value: + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-45-compose:Fedora-45-20260821.n.0@sha256:55b3460339b8c7aa0a2511e33c623310e17b16118764011059b2e8f35c5bedaf + - MANIFEST=fedora-standard + - name: output-image + value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-45-standard:{{revision}} + - name: labels + value: + - org.opencontainers.image.version=45 + pipelineRef: + params: + - name: bundle + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + - name: name + value: buildah-build-bootc-multi-platform-oci-ta + - name: kind + value: pipeline + resolver: bundles + timeouts: + pipeline: 6h + taskRunTemplate: + serviceAccountName: build-pipeline-fedora-bootc-45-standard diff --git a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml index f34bb4a..b351374 100644 --- a/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-pull-request.yaml @@ -57,7 +57,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-iot-push.yaml b/.tekton/fedora-bootc-rawhide-iot-push.yaml index d060998..89e9523 100644 --- a/.tekton/fedora-bootc-rawhide-iot-push.yaml +++ b/.tekton/fedora-bootc-rawhide-iot-push.yaml @@ -54,7 +54,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-iot:{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml index 6da252c..c16f175 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-pull-request.yaml @@ -57,7 +57,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml index 1f6fe7c..5e50335 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-plus-push.yaml @@ -54,7 +54,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal-plus:{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml index afc144a..a0a9555 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-pull-request.yaml @@ -55,7 +55,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-minimal-push.yaml b/.tekton/fedora-bootc-rawhide-minimal-push.yaml index 0aade97..5432754 100644 --- a/.tekton/fedora-bootc-rawhide-minimal-push.yaml +++ b/.tekton/fedora-bootc-rawhide-minimal-push.yaml @@ -52,7 +52,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-minimal:{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml index 39b8a6d..712a420 100644 --- a/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-pull-request.yaml @@ -59,7 +59,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:on-pr-{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle diff --git a/.tekton/fedora-bootc-rawhide-standard-push.yaml b/.tekton/fedora-bootc-rawhide-standard-push.yaml index 563fb5e..1f67ccf 100644 --- a/.tekton/fedora-bootc-rawhide-standard-push.yaml +++ b/.tekton/fedora-bootc-rawhide-standard-push.yaml @@ -56,7 +56,7 @@ spec: value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-rawhide-standard:{{revision}} - name: labels value: - - org.opencontainers.image.version=45 + - org.opencontainers.image.version=46 pipelineRef: params: - name: bundle From 1edfe5d10868d5a77e18ab940282c9cadc422547 Mon Sep 17 00:00:00 2001 From: Sean Thrailkill Date: Mon, 24 Aug 2026 19:50:12 -0400 Subject: [PATCH 693/697] renovate: add Fedora 45 package rules --- renovate.json | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 95e9f77..50ab8d0 100644 --- a/renovate.json +++ b/renovate.json @@ -11,6 +11,8 @@ "- Fedora 43 REPOS_IMAGE: at any time", "- Fedora 44 bootc-pipeline: 2-5 AM UTC daily", "- Fedora 44 REPOS_IMAGE: at any time", + "- Fedora 45 bootc-pipeline: 2-5 AM UTC daily", + "- Fedora 45 REPOS_IMAGE: at any time", "- Rawhide bootc-pipeline: 2-5 AM UTC daily", "- Rawhide REPOS_IMAGE: at any time", "", @@ -63,11 +65,11 @@ "packageRules": [ { "description": [ - "Disable REPOS_IMAGE updates for 44-iot and rawhide-iot tekton files", + "Disable REPOS_IMAGE updates for 44-iot, 45-iot and rawhide-iot tekton files", "until we fix https://gitlab.com/fedora/bootc/base-images/-/issues/74" ], "matchManagers": ["custom.regex", "tekton"], - "matchFileNames": [".tekton/*-44-iot-*", ".tekton/*-rawhide-iot-*"], + "matchFileNames": [".tekton/*-44-iot-*", ".tekton/*-45-iot-*", ".tekton/*-rawhide-iot-*"], "enabled": false }, { @@ -128,6 +130,35 @@ "additionalBranchPrefix": "", "automerge": true }, + { + "matchManagers": ["tekton"], + "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], + "matchFileNames": [".tekton/fedora-bootc-45-*"], + "groupName": "Fedora 45 bootc-pipeline", + "groupSlug": "fedora-45-bootc-pipeline", + "branchPrefix": "renovate/fedora-45/", + "commitMessageTopic": "Fedora 45 bootc build pipeline", + "schedule": ["after 2am and before 5am"], + "timezone": "UTC", + "recreateWhen": "always", + "rebaseWhen": "always", + "additionalBranchPrefix": "", + "automerge": true + }, + { + "matchManagers": ["custom.regex"], + "matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-45-compose/"], + "matchFileNames": [".tekton/fedora-bootc-45-*"], + "groupName": "Fedora 45 REPOS_IMAGE", + "groupSlug": "fedora-45-repos-image", + "branchPrefix": "renovate/fedora-45/", + "commitMessageTopic": "Fedora 45 REPOS_IMAGE", + "schedule": ["at any time"], + "recreateWhen": "always", + "rebaseWhen": "never", + "additionalBranchPrefix": "", + "automerge": true + }, { "matchManagers": ["tekton"], "matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"], From 3a5c13c2f711ea416cf91bf79d7565a7e8cd776c Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 25 Aug 2026 04:03:13 +0000 Subject: [PATCH 694/697] Update Fedora 45 bootc build pipeline to 9eb1dec Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-45-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-45-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-45-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-45-minimal-push.yaml | 2 +- .tekton/fedora-bootc-45-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-45-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-45-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-45-minimal-plus-pull-request.yaml index 879097f..82c932d 100644 --- a/.tekton/fedora-bootc-45-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-45-minimal-plus-pull-request.yaml @@ -61,7 +61,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-45-minimal-plus-push.yaml b/.tekton/fedora-bootc-45-minimal-plus-push.yaml index 76feacb..07e2e0e 100644 --- a/.tekton/fedora-bootc-45-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-45-minimal-plus-push.yaml @@ -58,7 +58,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-45-minimal-pull-request.yaml b/.tekton/fedora-bootc-45-minimal-pull-request.yaml index e176644..3ab84df 100644 --- a/.tekton/fedora-bootc-45-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-45-minimal-pull-request.yaml @@ -59,7 +59,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-45-minimal-push.yaml b/.tekton/fedora-bootc-45-minimal-push.yaml index e04ef02..de754ba 100644 --- a/.tekton/fedora-bootc-45-minimal-push.yaml +++ b/.tekton/fedora-bootc-45-minimal-push.yaml @@ -56,7 +56,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-45-standard-pull-request.yaml b/.tekton/fedora-bootc-45-standard-pull-request.yaml index 740af3e..0e80e9a 100644 --- a/.tekton/fedora-bootc-45-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-45-standard-pull-request.yaml @@ -63,7 +63,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind diff --git a/.tekton/fedora-bootc-45-standard-push.yaml b/.tekton/fedora-bootc-45-standard-push.yaml index b950119..89a18c7 100644 --- a/.tekton/fedora-bootc-45-standard-push.yaml +++ b/.tekton/fedora-bootc-45-standard-push.yaml @@ -60,7 +60,7 @@ spec: pipelineRef: params: - name: bundle - value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:8ff57394418faad7722c144f77494cf654007d60f63526357c007700bfc34edd + value: quay.io/bootc-devel/tekton-catalog/pipeline-buildah-build-bootc-multi-platform-oci-ta@sha256:9eb1decf91e0d678a613f7d4767091c05b37bec8a02163087254328f1e848c51 - name: name value: buildah-build-bootc-multi-platform-oci-ta - name: kind From 34db265c030d9cfb3c61c8869675f4b95772245f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 25 Aug 2026 12:02:05 +0000 Subject: [PATCH 695/697] Update Fedora 44 REPOS_IMAGE to Fedora-44-updates-20260825.0 Signed-off-by: Platform Engineering Bot --- .tekton/fedora-bootc-44-minimal-plus-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-plus-push.yaml | 2 +- .tekton/fedora-bootc-44-minimal-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-minimal-push.yaml | 2 +- .tekton/fedora-bootc-44-standard-pull-request.yaml | 2 +- .tekton/fedora-bootc-44-standard-push.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml index 54e4a4a..683c4a8 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-pull-request.yaml @@ -49,7 +49,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260825.0@sha256:a927d08edf12c3d8d8299fa948bd22aefe771b54186bce85c42aa0f8fa1ebacf - MANIFEST=fedora-minimal-plus - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-plus-push.yaml b/.tekton/fedora-bootc-44-minimal-plus-push.yaml index 78dce0f..1f37771 100644 --- a/.tekton/fedora-bootc-44-minimal-plus-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-plus-push.yaml @@ -48,7 +48,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260825.0@sha256:a927d08edf12c3d8d8299fa948bd22aefe771b54186bce85c42aa0f8fa1ebacf - MANIFEST=fedora-minimal-plus - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal-plus:{{revision}} diff --git a/.tekton/fedora-bootc-44-minimal-pull-request.yaml b/.tekton/fedora-bootc-44-minimal-pull-request.yaml index 21d2ea2..16b7f06 100644 --- a/.tekton/fedora-bootc-44-minimal-pull-request.yaml +++ b/.tekton/fedora-bootc-44-minimal-pull-request.yaml @@ -47,7 +47,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260825.0@sha256:a927d08edf12c3d8d8299fa948bd22aefe771b54186bce85c42aa0f8fa1ebacf - MANIFEST=fedora-minimal - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-minimal-push.yaml b/.tekton/fedora-bootc-44-minimal-push.yaml index d15a653..cbb7852 100644 --- a/.tekton/fedora-bootc-44-minimal-push.yaml +++ b/.tekton/fedora-bootc-44-minimal-push.yaml @@ -46,7 +46,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260825.0@sha256:a927d08edf12c3d8d8299fa948bd22aefe771b54186bce85c42aa0f8fa1ebacf - MANIFEST=fedora-minimal - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-minimal:{{revision}} diff --git a/.tekton/fedora-bootc-44-standard-pull-request.yaml b/.tekton/fedora-bootc-44-standard-pull-request.yaml index 256ab41..d3ff8b0 100644 --- a/.tekton/fedora-bootc-44-standard-pull-request.yaml +++ b/.tekton/fedora-bootc-44-standard-pull-request.yaml @@ -51,7 +51,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260825.0@sha256:a927d08edf12c3d8d8299fa948bd22aefe771b54186bce85c42aa0f8fa1ebacf - MANIFEST=fedora-standard - name: image-expires-after value: 5d diff --git a/.tekton/fedora-bootc-44-standard-push.yaml b/.tekton/fedora-bootc-44-standard-push.yaml index f9ee2b3..80bf3b3 100644 --- a/.tekton/fedora-bootc-44-standard-push.yaml +++ b/.tekton/fedora-bootc-44-standard-push.yaml @@ -50,7 +50,7 @@ spec: value: true - name: build-args value: - - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260824.0@sha256:38408137c318706f23ca07948cdd6372008f3187dfae05a325aa62d51846618a + - REPOS_IMAGE=quay.io/bootc-devel/fedora-bootc-44-compose:Fedora-44-updates-20260825.0@sha256:a927d08edf12c3d8d8299fa948bd22aefe771b54186bce85c42aa0f8fa1ebacf - MANIFEST=fedora-standard - name: output-image value: quay.io/konflux-fedora/bootc-tenant/fedora-bootc-44-standard:{{revision}} From 6d9956d3f7ad7d1d524d9c2a009f2bbc4d88f336 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Mon, 24 Aug 2026 16:37:40 -0400 Subject: [PATCH 696/697] docs: update RELEASE.md steps for new Fedora version The tenant definitions are in a different place now and also there are many more .yaml files so use `find` to find all the files to then run `sed` on. Also combine step 4 and step 5 together since they are both touching the tenants-config and the change should go into the same MR. --- RELEASE.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index e11ca1c..fe2f647 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -234,18 +234,17 @@ Add package rules for the new version in `renovate.json`. See the existing rules **Repository:** https://gitlab.com/fedora/infrastructure/konflux/tenants-config ```bash -cd cluster/kfluxfedorap01/bootc-tenant/applications/fedora-bootc/ +cd clusters/kflux-fedora-01/tenants/bootc-tenant/applications/fedora-bootc/ NEW_RELEASE=44 # Copy from rawhide cp -r rawhide $NEW_RELEASE # Update version references -sed -i "s/rawhide/$NEW_RELEASE/g" $NEW_RELEASE/**/*.yaml sed -i "s/compose-rawhide-id/compose-branched-id/" $NEW_RELEASE/releaseplans/release-to-quay-io/kustomization.yaml +find "${NEW_RELEASE}/" -type f | xargs sed -i "s/rawhide/$NEW_RELEASE/g" ``` -#### Step 5: Register the New Version (tenants-config repo) Add the new version to `fedora-bootc/kustomization.yaml`: @@ -259,6 +258,8 @@ resources: - "42" ``` +See [MR !237](https://gitlab.com/fedora/infrastructure/konflux/tenants-config/-/merge_requests/237) for reference (F45 addition). + ### Removing an EOL Fedora Version from Konflux When a Fedora version reaches EOL (e.g., F42), follow these steps: From f7e7f0101fa6351cb9ab8b3299043e2f879dc897 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 25 Aug 2026 12:18:14 -0400 Subject: [PATCH 697/697] tests: don't use rawhide image for yum repos The repo locations moved in F45+ [1] and so now when testing F44 in CI we end up with a failure like: ``` [2/3] STEP 2/2: RUN --mount=type=bind,from=repos,src=/,dst=/repos,rw < args.txt...) rpm-ostree version: 2026.2 error: Installing packages: No enabled repositories error: Executing compose install: ExitStatus(unix_wait_status(256)) Error executing command: Command '['rpm-ostree', 'compose', 'rootfs', '--source-root-rw=/repos', '/tmp/tmpmnq4sg6s.json', '/target-rootfs']' returned non-zero exit status 1. subprocess exited with status 1 ``` Let's drop using the rawhide image just for `repos` and use the repos baked into the image we built instead (which should match the target Fedora version we're testing). [1] https://fedoraproject.org/wiki/Changes/RelocateRpmRepoConfigsToUsr --- tests/Containerfile.test-derive | 11 +++++------ tests/Containerfile.test-sysusers | 5 ++--- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/tests/Containerfile.test-derive b/tests/Containerfile.test-derive index 07cb9bc..72864ff 100644 --- a/tests/Containerfile.test-derive +++ b/tests/Containerfile.test-derive @@ -1,13 +1,12 @@ -# This test case exercises using the fedora-bootc image as a builder -# to generate a minimal target image derived from CentOS Stream 10 content, -# and then further extends it in a secondary phase. -FROM quay.io/fedora/fedora-bootc:rawhide as repos +# This test case exercises using the fedora-bootc image as a builder to +# generate a minimal target image, and then further extends it in a secondary +# phase. # This is intentionally a locally built image FROM localhost/fedora-bootc as builder -RUN --mount=type=bind,from=repos,src=/,dst=/repos,rw < args.txt -/usr/libexec/bootc-base-imagectl --args-file args.txt build-rootfs --manifest=standard/manifest /repos /target-rootfs +/usr/libexec/bootc-base-imagectl --args-file args.txt build-rootfs --manifest=standard/manifest /target-rootfs EORUN # This pulls in the rootfs generated in the previous step diff --git a/tests/Containerfile.test-sysusers b/tests/Containerfile.test-sysusers index 53e255b..37165e0 100644 --- a/tests/Containerfile.test-sysusers +++ b/tests/Containerfile.test-sysusers @@ -1,15 +1,14 @@ # This test case exercises --sysusers. -FROM quay.io/fedora/fedora-bootc:rawhide as repos # This is intentionally a locally built image FROM localhost/fedora-bootc as builder -RUN --mount=type=bind,from=repos,src=/,dst=/repos,rw < overlay/usr/lib/sysusers.d/00-chrony.conf <