Skip to content

chore(deps): update konflux references - #118

Merged
openshift-merge-bot[bot] merged 1 commit into
mainfrom
konflux/references/main
Sep 21, 2026
Merged

openshift-merge-bot[bot] merged 1 commit into
mainfrom
konflux/references/main

Conversation

@red-hat-konflux-kflux-prd-rh02

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
quay.io/konflux-ci/tekton-catalog/task-apply-tags (source, changelog) tekton-bundle digest b1c71d8 → c177fc2
quay.io/konflux-ci/tekton-catalog/task-apply-tags (source, changelog) tekton-bundle patch 0.3 → 0.3.1
quay.io/konflux-ci/tekton-catalog/task-build-image-index (source, changelog) tekton-bundle digest 6ead03c → 1e2e00b
quay.io/konflux-ci/tekton-catalog/task-build-image-index (source, changelog) tekton-bundle patch 0.3 → 0.3.1
quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta (source, changelog) tekton-bundle digest dd0c817 → 9eef3bf
quay.io/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta (source, changelog) tekton-bundle minor 0.10 → 0.12.1
quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check (source, changelog) tekton-bundle digest e78d0d3 → 0ccc688
quay.io/konflux-ci/tekton-catalog/task-fbc-fips-check-oci-ta (source, changelog) tekton-bundle digest 935adb6 → 7361770
quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta (source, changelog) tekton-bundle digest 1d7ba56 → a367891
quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta (source, changelog) tekton-bundle patch 0.2 → 0.2.6
quay.io/konflux-ci/tekton-catalog/task-init (source, changelog) tekton-bundle patch 0.4 → 0.4.3
quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta (source, changelog) tekton-bundle digest 9fd7d25 → 0c386f2
quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta (source, changelog) tekton-bundle minor 0.3 → 0.10.3
quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan (source, changelog) tekton-bundle digest 64bb1cf → d9df5d3
quay.io/konflux-ci/tekton-catalog/task-run-opm-command-oci-ta (source, changelog) tekton-bundle digest a4865bd → edc7d82
quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta (source, changelog) tekton-bundle digest d9b0153 → d00c884
quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta (source, changelog) tekton-bundle digest a973b32 → 17b9587
quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta (source, changelog) tekton-bundle digest 3817504 → 15d654c
quay.io/konflux-ci/tekton-catalog/task-validate-fbc (source, changelog) tekton-bundle minor 0.1 → 0.3

Release Notes

konflux-ci/container-build-catalog (quay.io/konflux-ci/tekton-catalog/task-apply-tags)

v0.3.1

Changed
  • Nothing. Started using semver specification for version labels.
konflux-ci/build-pipeline-tasks (quay.io/konflux-ci/tekton-catalog/task-build-image-index)

v0.3.1

Fixed
  • Export SBOM_SKIP_VALIDATION into the step environment so the create-sbom step honors the parameter.
    The parameter did nothing before. Now it works as expected.
konflux-ci/container-build-catalog (quay.io/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta)

v0.12.1

Changed
  • Bump prepare-sboms step memory from 256Mi to 512Mi (requests = limits) to prevent OOM kills on large container images (GPU/ML, bootc, driver-toolkit).
  • Remove prepare-sboms CPU limit (was 100m) to allow burst CPU and prevent throttling. CPU requests remain at 100m.

v0.12.0

Changed
  • Parameter CONTEXTUALIZE_SBOM is now set to false by default. The SBOM
    contextualization received an overhaul, enabling the support for builder
    content contextualization in SBOMs. To get involved in UAT, set this value
    to true and report issues
    to Mobster maintainers.
  • When CONTEXTUALIZE_SBOM is set to true, the built image will contain
    new labels, io.buildah.stage.name and io.buildah.stage.base.

v0.11.2

Fixed
  • Per-arch RPM filtering for the prefetch SBOM.
    • With buildah task versions >= 0.10.0, < 0.11.2, the final SBOM would always
      include the x86_64 RPMs (and no other arches) from the prefetch SBOM,
      even for images built on other arches.
    • Now, the SBOM will contain the RPMs for the corresponding arch.

v0.11.1

Changed
  • Set a 5 minute I/O timeout for rsync transfers to and from the build VMs.
    The build will fail if the connection goes 5 minutes without transfering
    a single byte of data.
Fixed
  • Stopped rsyncing /var/workdir from build VMs back to the cluster.
    This directory contains the git repository and prefetched dependencies,
    which can be a lot of data. The rsync back was an unfortunate side effect
    of how tooling generates the remote-oci-ta task variant from the base task,
    and was completely unnecessary.

v0.11.0

Changed
  • When scanning the built image with Syft, scans the image filesystem as
    a directory instead of scanning the the image as an OCI archive. This improves
    the scanning time, disk usage and may improve memory usage. More details in
    konflux-build-cli/docs/design/syft-image-scanning.md.
  • The remote variants of this task now push the built image to the registry directly
    from the build VM instead of rsyncing the image back to the cluster first.
    For large images, this significantly reduces the time spent on network transfers.
Removed
  • BREAKING: Removed the sbom-syft-generate step, SBOM generation now happens
    in the build step.
  • BREAKING: Removed the push step, the push now happens in the build step.
  • If you have step overrides configured for either of the two removed steps,
    the pipeline will fail with invalid StepOverride. See the migration guidance below.
Migration guidance

Buildah v0.11.0 comes with a migration script that will attempt to automatically
fix the step overrides in your PipelineRuns. In most cases, no manual action will
be needed. But there are cases that the script cannot handle:

  1. Your PipelineRun references an external Pipeline. In this case, the migration
    script will never get a chance to run on the PipelineRun.
  2. Your PipelineRun is multi-platform, SBOM generation needs more resources
    than the build itself and the remote VMs do not have sufficient resources.

If the migration script doesn't solve the problem, please follow the procedure below.

Manual procedure

If you have sbom-syft-generate or push step overrides in the .spec.taskRunSpecs
section in your PipelineRun, please remove them. In most cases, this should be all.

However, if you were previously requesting more resources for SBOM generation
than for the build step itself, there is a chance that the build will fail.
In this case, move the relevant overrides to the build step. The same technically
applies for the push step, but it's highly unlikely that pushing would require
more resources than the build.

For example:

 spec:
   taskRunSpecs:
     - pipelineTaskName: build-container
       stepSpecs:
-        - name: sbom-syft-generate
+        - name: build
           computeResources:
             requests:
               memory: 16Gi
             limits:
               memory: 16Gi

This will work for build steps that run in-cluster - single-platform builds
and typically also the amd64 builds in a multi-platform build setup.

For build steps that run on remote VMs, the overrides have no effect. In case
the build fails, please switch to a larger VM flavor (consult the documentation
of your particular Konflux deployment to see what's available).

For example:

 spec:
   params:
     - name: build-platforms
       value:
         - localhost
-        - linux/arm64
+        - linux-mxlarge/arm64

v0.10.7

Fixed
  • Thanks to konflux-build-cli#208, the task now supports per-containerfile
    ignore files, same as buildah itself.
    • Previously, the task supported the .containerignore and .dockerignore files
      in the root of the context directory, but not the <containerfile>.containerignore
      and <containerfile>.dockerignore files.

v0.10.6

Fixed
  • Attaching SBOM attestations using keyless signing. This stopped working between
    versions 0.10.4 and 0.10.5, when the upload-sbom step upgraded cosign to v3.
    • Cosign v3 wants to use a "signing config" JSON file instead of accepting
      service URLs directly as CLI flags. The konflux-ci/konflux-ci deployment
      of Konflux doesn't provide the config file in the TUF mirror. Fixed
      by setting --use-signing-config=false to still allow direct URLs.
Changed
  • Consolidated all keyless signing code in the upload-sbom step.
    Previously, if keyless signing was enabled, the task would sign the image
    in the push step and then the SBOM in upload-sbom step. Now, it will sign both
    in the upload-sbom step. This has no practical impact, but enables a larger
    rework of the push step in the future.

v0.10.5

Added
  • Added a new parameter RHSM_MOUNT_CA_CERTS to allow setting [konflux-build-cli]'s
    --rhsm-mount-ca-certs option.
konflux-ci/container-build-catalog (quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta)

v0.10.3

v0.10.2

v0.10.1

Changed
  • When input is empty, only run the skip-ta step and skip other steps
  • Use quay.io/konflux-ci/task-runner for the skip-ta step instead of ubi-minimal

v0.10.0

v0.9.0

Added
  • Added optional pip-index-url parameter to pass PIP_INDEX_URL to Hermeto for pip dependency prefetch.
    When set, this URL is used as a fallback package index when requirements.txt does not specify --index-url.
    To use this parameter, add pip-index-url (type: string, default: "") to your pipeline params
    and pass it to the prefetch-dependencies task.

v0.8.0

v0.7.1

v0.7.0

v0.6.0

v0.5.0

v0.4.1

Fixed
  • Mount the trusted-ca volume in the use-trusted-artifact and create-trusted-artifact steps.
    Previously, the mount was missing, which means the task did not support container registries
    with certificates signed by a private/self-signed CA.

v0.4.0

v0.3.2

  • Added enable-package-registry-proxy parameter to enable use of the package registry proxy when prefetching dependencies.
  • Added SERVICE_CA_TRUST_CONFIG_MAP_NAME and SERVICE_CA_TRUST_CONFIG_MAP_KEY parameters to mount the OpenShift service CA for verifying TLS connections to in-cluster services such as the package registry proxy.
konflux-ci/konflux-operator-tasks (quay.io/konflux-ci/tekton-catalog/task-validate-fbc)

v0.3

Fixed
  • Migration script for fbc-inject-lifecycle-oci-ta now resolves the task bundle
    digest dynamically at migration time instead of using a hardcoded pin, preventing
    digest-mismatch errors for teams that had not yet merged the MintMaker PR for 0.2.
Changed
  • Migration script now uses yq instead of sed for all pipeline YAML edits,
    for cross-platform compatibility (macOS + Linux) and safer, structure-aware
    modifications (e.g. distinguishing actual task objects from string matches
    on bundle_ref or param values).
  • Added BUILD_ARGS param wiring to fbc-inject-lifecycle, sourced from
    $(params.build-args[*]) and normalized to a list value.

v0.2

Changed
  • Version bump to trigger automated rollout of the new fbc-inject-lifecycle-oci-ta
    task to all FBC builder pipelines via MintMaker. No functional changes to this task.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Only on Saturday (* * * * 6)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

Signed-off-by: red-hat-konflux-kflux-prd-rh02 <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com>
@red-hat-konflux-kflux-prd-rh02 red-hat-konflux-kflux-prd-rh02 Bot added approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. labels Sep 19, 2026
@red-hat-konflux-kflux-prd-rh02

red-hat-konflux-kflux-prd-rh02 Bot commented Sep 19, 2026 •

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: undefined
Command failed: /bin/sh -c pipeline-migration-tool migrate -f "$RENOVATE_POST_UPGRADE_COMMAND_DATA_FILE"
DEBUG:2026-09-19 20:11:00,325:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,325:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,326:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,329:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,329:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,329:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,330:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,330:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,331:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,332:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,334:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,335:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,338:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,338:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,416:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,417:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,419:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,420:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,421:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:00,813:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:00,814:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-build-image-index/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 380
DEBUG:2026-09-19 20:11:00,852:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:00,903:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-deprecated-image-check/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:01,012:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 383
DEBUG:2026-09-19 20:11:01,014:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-apply-tags
DEBUG:2026-09-19 20:11:01,015:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-build-image-index
DEBUG:2026-09-19 20:11:01,018:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-apply-tags
DEBUG:2026-09-19 20:11:01,055:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 385
DEBUG:2026-09-19 20:11:01,112:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-validate-fbc/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 715
DEBUG:2026-09-19 20:11:01,113:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 715
DEBUG:2026-09-19 20:11:01,116:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-fbc-fips-check-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:01,212:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-run-opm-command-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:01,213:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-init/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 1054
DEBUG:2026-09-19 20:11:01,214:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:01,216:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check
DEBUG:2026-09-19 20:11:01,217:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,217:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,218:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta
DEBUG:2026-09-19 20:11:01,219:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,220:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta
DEBUG:2026-09-19 20:11:01,222:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-validate-fbc
DEBUG:2026-09-19 20:11:01,314:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:01,314:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-git-clone-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:01,315:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-build-image-index/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 380
DEBUG:2026-09-19 20:11:01,315:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta
DEBUG:2026-09-19 20:11:01,315:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-rpms-signature-scan/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 383
DEBUG:2026-09-19 20:11:01,316:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-git-clone-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 49
DEBUG:2026-09-19 20:11:01,317:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-fbc-fips-check-oci-ta
DEBUG:2026-09-19 20:11:01,317:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 383
DEBUG:2026-09-19 20:11:01,318:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-run-opm-command-oci-ta
DEBUG:2026-09-19 20:11:01,319:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-init
DEBUG:2026-09-19 20:11:01,321:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta
DEBUG:2026-09-19 20:11:01,321:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,323:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,323:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,323:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,324:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,325:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,325:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,326:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta
DEBUG:2026-09-19 20:11:01,327:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta
DEBUG:2026-09-19 20:11:01,329:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-build-image-index
DEBUG:2026-09-19 20:11:01,329:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,330:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan
DEBUG:2026-09-19 20:11:01,331:migrate.resolver-proxy:Migration image is not found from repository quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta
DEBUG:2026-09-19 20:11:01,331:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,332:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,333:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta
DEBUG:2026-09-19 20:11:01,333:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,334:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,335:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,336:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,337:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,337:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,337:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,338:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,338:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,339:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,340:migrate.resolver-proxy:Use LinkedMigrationsResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,341:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,342:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,344:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,345:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,413:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,413:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,413:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-buildah-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25&limit=10 HTTP/1.1" 200 385
DEBUG:2026-09-19 20:11:01,414:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,415:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,417:migrate.resolver-proxy:Migration image is found from repository quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta
DEBUG:2026-09-19 20:11:01,512:migrate.resolver-proxy:Use MigrationImagesResolver to resolve migrations.
DEBUG:2026-09-19 20:11:01,713:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12987
DEBUG:2026-09-19 20:11:01,812:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.1- HTTP/1.1" 200 14247
DEBUG:2026-09-19 20:11:01,812:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-deprecated-image-check/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.5- HTTP/1.1" 200 9526
DEBUG:2026-09-19 20:11:01,813:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25 HTTP/1.1" 200 383
DEBUG:2026-09-19 20:11:01,814:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12987
DEBUG:2026-09-19 20:11:01,814:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-fbc-fips-check-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.1- HTTP/1.1" 200 14361
DEBUG:2026-09-19 20:11:01,814:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-validate-fbc/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25 HTTP/1.1" 200 715
DEBUG:2026-09-19 20:11:01,815:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,816:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-build-image-index/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25 HTTP/1.1" 200 380
DEBUG:2026-09-19 20:11:01,913:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,920:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,921:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,924:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:01,924:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,012:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25 HTTP/1.1" 200 385
DEBUG:2026-09-19 20:11:02,012:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-git-clone-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.2- HTTP/1.1" 200 2070
DEBUG:2026-09-19 20:11:02,013:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.5- HTTP/1.1" 200 8391
DEBUG:2026-09-19 20:11:02,013:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-run-opm-command-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.1- HTTP/1.1" 200 4921
DEBUG:2026-09-19 20:11:02,013:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-init/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3Amigration-%25.%25-%25-%25 HTTP/1.1" 200 1054
DEBUG:2026-09-19 20:11:02,014:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
WARNING:2026-09-19 20:11:02,017:migrate:Registry does not have current bundle quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.2.6@sha256:1d7ba568ae6e9e26800054f3942779de8abc80ddc48f0e44df6b1c2f098161dc
WARNING:2026-09-19 20:11:02,022:migrate:Registry does not have new bundle quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.5@sha256:17b9587eba53fabaab35061275306bfe1f99661d55e14e22f62321fa7cb5ff3e
DEBUG:2026-09-19 20:11:02,113:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-git-clone-oci-ta/tag/?page=1&onlyActiveTags=true&filter_tag_name=like%3A0.2- HTTP/1.1" 200 2070
DEBUG:2026-09-19 20:11:02,113:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,115:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
INFO:2026-09-19 20:11:02,115:migrate:Upgrade range is empty for quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta. Skip resolving migrations.
INFO:2026-09-19 20:11:02,116:migrate:Upgrade range is empty for quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta. Skip resolving migrations.
DEBUG:2026-09-19 20:11:02,116:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
WARNING:2026-09-19 20:11:02,118:migrate:Registry does not have new bundle quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.2.6@sha256:a3678910c2bf9187a66a96066193cb41046fbb7097160bf2be6a374ed5e49d30
INFO:2026-09-19 20:11:02,119:migrate:Upgrade range is empty for quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta. Skip resolving migrations.
DEBUG:2026-09-19 20:11:02,164:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=2&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12996
DEBUG:2026-09-19 20:11:02,212:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta/tag/?page=2&onlyActiveTags=true&filter_tag_name=like%3A0.1- HTTP/1.1" 200 9554
DEBUG:2026-09-19 20:11:02,213:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-deprecated-image-check/manifests/sha256:0ccc688a77e9b7b0b8973c132a1e840844137e77f887be4a0bec8893b0776872 HTTP/1.1" 200 1377
WARNING:2026-09-19 20:11:02,215:migrate:Registry does not have new bundle quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:d00c884c78489a52dc638e6ced0a01429670d0754f5b1305ad576709cf660312
INFO:2026-09-19 20:11:02,215:migrate:Upgrade range is empty for quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta. Skip resolving migrations.
INFO:2026-09-19 20:11:02,217:migrate:Migration search stops at quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5-a545338e5bac49c7dfdba1cc2e5ad1c0b1e9ef7d@sha256:0ccc688a77e9b7b0b8973c132a1e840844137e77f887be4a0bec8893b0776872
DEBUG:2026-09-19 20:11:02,315:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,370:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=2&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12996
DEBUG:2026-09-19 20:11:02,413:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-validate-fbc/manifests/migration-0.2-41a3c5003ce1dcfb5cb112dc3f9a5eb5da8af0eefcb49f091e12606233270733-1783967772 HTTP/1.1" 200 629
DEBUG:2026-09-19 20:11:02,413:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta/manifests/migration-0.3.2-6433f171aae44fd4d532aa4512119015e5812b0f8e3df9ccb9f2274ccdc175ea-1782912267 HTTP/1.1" 200 631
DEBUG:2026-09-19 20:11:02,417:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,463:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta/blobs/sha256:6433f171aae44fd4d532aa4512119015e5812b0f8e3df9ccb9f2274ccdc175ea HTTP/1.1" 302 1019
DEBUG:2026-09-19 20:11:02,512:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta/manifests/migration-0.11.0-1c9be44fab93eff65ce47db18253e37b4df4f253e47e7c376103e45b309d3020-1785833792 HTTP/1.1" 200 633
DEBUG:2026-09-19 20:11:02,512:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-run-opm-command-oci-ta/manifests/sha256:edc7d8263a73aa061ab23b7b16f42ca86a40a0d03848cb64097d97c4d084a3f6 HTTP/1.1" 200 2305
DEBUG:2026-09-19 20:11:02,513:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=3&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12996
DEBUG:2026-09-19 20:11:02,513:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-validate-fbc/blobs/sha256:41a3c5003ce1dcfb5cb112dc3f9a5eb5da8af0eefcb49f091e12606233270733 HTTP/1.1" 302 1019
DEBUG:2026-09-19 20:11:02,513:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=3&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12996
DEBUG:2026-09-19 20:11:02,513:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-init/manifests/migration-0.4.3-d314455d220a32f6f64e3bfd7f3ef8c84e086a8107163cc9491b9cd5bdb6ac97-1786457984 HTTP/1.1" 200 631
DEBUG:2026-09-19 20:11:02,515:urllib3.connectionpool:Starting new HTTPS connection (1): s3.us-east-1.amazonaws.com:443
INFO:2026-09-19 20:11:02,516:migrate:Migration search stops at quay.io/konflux-ci/tekton-catalog/task-run-opm-command-oci-ta:0.1-b8af62d5044a0d344b7feb3d63aa1a4cf67eb4cb@sha256:edc7d8263a73aa061ab23b7b16f42ca86a40a0d03848cb64097d97c4d084a3f6
DEBUG:2026-09-19 20:11:02,522:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,522:urllib3.connectionpool:Starting new HTTPS connection (1): s3.us-east-1.amazonaws.com:443
DEBUG:2026-09-19 20:11:02,523:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,576:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-init/blobs/sha256:d314455d220a32f6f64e3bfd7f3ef8c84e086a8107163cc9491b9cd5bdb6ac97 HTTP/1.1" 302 1019
DEBUG:2026-09-19 20:11:02,612:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta/blobs/sha256:1c9be44fab93eff65ce47db18253e37b4df4f253e47e7c376103e45b309d3020 HTTP/1.1" 302 1019
DEBUG:2026-09-19 20:11:02,612:urllib3.connectionpool:Starting new HTTPS connection (1): s3.us-east-1.amazonaws.com:443
DEBUG:2026-09-19 20:11:02,614:urllib3.connectionpool:Starting new HTTPS connection (1): s3.us-east-1.amazonaws.com:443
DEBUG:2026-09-19 20:11:02,646:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=4&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12888
DEBUG:2026-09-19 20:11:02,713:urllib3.connectionpool:https://s3.us-east-1.amazonaws.com:443 "GET /quayio-production-s3/sha256/41/41a3c5003ce1dcfb5cb112dc3f9a5eb5da8af0eefcb49f091e12606233270733?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIATAAF2YHTGR23ZTE6%2F20260919%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260919T201102Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=81283654d88b88a4dc282be00ddf994920f8379fca50ff65e2cb46d5af9b00d7 HTTP/1.1" 200 3853
DEBUG:2026-09-19 20:11:02,713:urllib3.connectionpool:https://s3.us-east-1.amazonaws.com:443 "GET /quayio-production-s3/sha256/64/6433f171aae44fd4d532aa4512119015e5812b0f8e3df9ccb9f2274ccdc175ea?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIATAAF2YHTGR23ZTE6%2F20260919%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260919T201102Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=88ccebbccf127b3a6a4281a1af9652e19c91c99bf8671a2a8d03ad65db27cf6a HTTP/1.1" 200 2593
DEBUG:2026-09-19 20:11:02,713:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-fbc-fips-check-oci-ta/tag/?page=2&onlyActiveTags=true&filter_tag_name=like%3A0.1- HTTP/1.1" 200 4382
DEBUG:2026-09-19 20:11:02,714:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-apply-tags/tag/?page=4&onlyActiveTags=true&filter_tag_name=like%3A0.3- HTTP/1.1" 200 12888
WARNING:2026-09-19 20:11:02,716:migrate:Registry does not have current bundle quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.3.1@sha256:b1c71d83be8e6d0e44f9b6e58e1ad491396d4c287be9291802c9be69d9441f2f
INFO:2026-09-19 20:11:02,717:oras.logger:Successfully pulled /tmp/tmpn56px3_a-migration/0.2.sh.
WARNING:2026-09-19 20:11:02,724:migrate:Registry does not have new bundle quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.3.1@sha256:c177fc2b2482b1299e713c51bf258eba4972c016ef260d9f45335c2550dc7b2b
INFO:2026-09-19 20:11:02,724:oras.logger:Successfully pulled /tmp/tmpfonjdg1p-migration/0.3.2.sh.
INFO:2026-09-19 20:11:02,725:migrate:Upgrade range is empty for quay.io/konflux-ci/tekton-catalog/task-apply-tags. Skip resolving migrations.
DEBUG:2026-09-19 20:11:02,725:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
INFO:2026-09-19 20:11:02,726:migrate:Upgrade range is empty for quay.io/konflux-ci/tekton-catalog/task-apply-tags. Skip resolving migrations.
DEBUG:2026-09-19 20:11:02,733:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,742:urllib3.connectionpool:https://s3.us-east-1.amazonaws.com:443 "GET /quayio-production-s3/sha256/1c/1c9be44fab93eff65ce47db18253e37b4df4f253e47e7c376103e45b309d3020?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIATAAF2YHTGR23ZTE6%2F20260919%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260919T201102Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=a778bc5bd61e9b9e8fad0651bd739fd37a05219fc1094011331f74a8fc3e1922 HTTP/1.1" 200 11913
INFO:2026-09-19 20:11:02,742:oras.logger:Successfully pulled /tmp/tmpl959oncq-migration/0.11.0.sh.
DEBUG:2026-09-19 20:11:02,813:urllib3.connectionpool:https://s3.us-east-1.amazonaws.com:443 "GET /quayio-production-s3/sha256/d3/d314455d220a32f6f64e3bfd7f3ef8c84e086a8107163cc9491b9cd5bdb6ac97?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIATAAF2YHTGR23ZTE6%2F20260919%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260919T201102Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=4b5a9436c6fdefc75c6bd7146de6a26ce5d498f9efdf3cab6a4f4a2f3f822ba2 HTTP/1.1" 200 4750
INFO:2026-09-19 20:11:02,815:oras.logger:Successfully pulled /tmp/tmplottyc_o-migration/0.4.3.sh.
DEBUG:2026-09-19 20:11:02,820:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443
DEBUG:2026-09-19 20:11:02,880:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-validate-fbc/manifests/migration-0.3-ace7d6aab72332fda292232e7968938549bc6fb67141fb11fd36f180958c384e-1785425140 HTTP/1.1" 200 629
DEBUG:2026-09-19 20:11:02,958:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-fbc-fips-check-oci-ta/manifests/sha256:736177074f4949bab9467f41526d056ea5f229c3b5a4f28dbe51c38ba70e8328 HTTP/1.1" 200 2581
INFO:2026-09-19 20:11:02,959:migrate:Migration search stops at quay.io/konflux-ci/tekton-catalog/task-fbc-fips-check-oci-ta:0.1-0@sha256:736177074f4949bab9467f41526d056ea5f229c3b5a4f28dbe51c38ba70e8328
DEBUG:2026-09-19 20:11:02,962:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-validate-fbc/blobs/sha256:ace7d6aab72332fda292232e7968938549bc6fb67141fb11fd36f180958c384e HTTP/1.1" 302 1019
DEBUG:2026-09-19 20:11:02,963:urllib3.connectionpool:Starting new HTTPS connection (1): s3.us-east-1.amazonaws.com:443
DEBUG:2026-09-19 20:11:03,034:urllib3.connectionpool:https://s3.us-east-1.amazonaws.com:443 "GET /quayio-production-s3/sha256/ac/ace7d6aab72332fda292232e7968938549bc6fb67141fb11fd36f180958c384e?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIATAAF2YHTGR23ZTE6%2F20260919%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260919T201102Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=e73f72b5d647a590746a1bf00f94c08d9c4932ca06a354398d3675cc4fa476b1 HTTP/1.1" 200 6332
INFO:2026-09-19 20:11:03,035:oras.logger:Successfully pulled /tmp/tmpvjakmy9q-migration/0.3.sh.
DEBUG:2026-09-19 20:11:03,037:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-init/manifests/migration-0.4.2-e9f8a6f58803a08da3325e58aae1a98557404a0d1f49c055d8f0ee7b341e1cbf-1782733140 HTTP/1.1" 200 630
DEBUG:2026-09-19 20:11:03,204:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-init/blobs/sha256:e9f8a6f58803a08da3325e58aae1a98557404a0d1f49c055d8f0ee7b341e1cbf HTTP/1.1" 302 1019
DEBUG:2026-09-19 20:11:03,205:urllib3.connectionpool:Starting new HTTPS connection (1): s3.us-east-1.amazonaws.com:443
DEBUG:2026-09-19 20:11:03,262:urllib3.connectionpool:https://s3.us-east-1.amazonaws.com:443 "GET /quayio-production-s3/sha256/e9/e9f8a6f58803a08da3325e58aae1a98557404a0d1f49c055d8f0ee7b341e1cbf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIATAAF2YHTGR23ZTE6%2F20260919%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260919T201103Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=4044e92403f7f78da9781d6b0a82773fdb93cf95cb6c9d78de9a5fab1dac2569 HTTP/1.1" 200 996
INFO:2026-09-19 20:11:03,262:oras.logger:Successfully pulled /tmp/tmpam7vospn-migration/0.4.2.sh.
WARNING:2026-09-19 20:11:03,270:migrate:Failed to resolve migrations for bundles: []
WARNING:2026-09-19 20:11:03,270:migrate:Do not attempt handling migrations for them.
INFO:2026-09-19 20:11:03,270:migrate.transition-to-modify:Not all migration scripts are using pmt-modify command. Using legacy way to handle pipeline file for applying migrations.
INFO:2026-09-19 20:11:03,532:migrate:Apply migration of task bundle quay.io/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta:0.11.0 in package file .tekton/fbc-build-pipeline.yaml
DEBUG:2026-09-19 20:11:03,532:migrate:Run: ['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']
DEBUG:2026-09-19 20:11:03,814:migrate:b'Processing Pipeline .tekton/fbc-build-pipeline.yaml\nLooking for PipelineRuns that reference Pipeline .tekton/fbc-build-pipeline.yaml\n'
INFO:2026-09-19 20:11:03,814:migrate:Apply migration of task bundle quay.io/konflux-ci/tekton-catalog/task-init:0.4.2 in package file .tekton/fbc-build-pipeline.yaml
DEBUG:2026-09-19 20:11:03,836:migrate:Run: ['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']
DEBUG:2026-09-19 20:11:03,843:migrate:b'Not a PipelineRun, skipping migration\n'
INFO:2026-09-19 20:11:03,843:migrate:Apply migration of task bundle quay.io/konflux-ci/tekton-catalog/task-init:0.4.3 in package file .tekton/fbc-build-pipeline.yaml
DEBUG:2026-09-19 20:11:03,843:migrate:Run: ['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']
DEBUG:2026-09-19 20:11:12,917:migrate:b"Adding source-date-epoch parameter to .spec.params\nINFO:2026-09-19 20:11:05,033:modify.generic:Inserting content into YAML path ['spec', 'params'] in file /tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml\nWiring SOURCE_DATE_EPOCH on task build-images to $(params.source-date-epoch)\nINFO:2026-09-19 20:11:06,527:modify.task:task 'build-images' in '/tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml': param 'SOURCE_DATE_EPOCH' will be created\nAdding rewrite-timestamp parameter to .spec.params\nINFO:2026-09-19 20:11:08,029:modify.generic:Inserting content into YAML path ['spec', 'params'] in file /tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml\nWiring REWRITE_TIMESTAMP on task build-images to $(params.rewrite-timestamp)\nINFO:2026-09-19 20:11:09,415:modify.task:task 'build-images' in '/tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml': param 'REWRITE_TIMESTAMP' will be created\nAdding omit-history parameter to .spec.params\nINFO:2026-09-19 20:11:10,827:modify.generic:Inserting content into YAML path ['spec', 'params'] in file /tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml\nWiring OMIT_HISTORY on task build-images to $(params.omit-history)\nINFO:2026-09-19 20:11:12,427:modify.task:task 'build-images' in '/tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml': param 'OMIT_HISTORY' will be created\n"
INFO:2026-09-19 20:11:12,917:migrate:Apply migration of task bundle quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.3.2 in package file .tekton/fbc-build-pipeline.yaml
DEBUG:2026-09-19 20:11:12,917:migrate:Run: ['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']
DEBUG:2026-09-19 20:11:14,122:migrate:b"Error: no matches found\nError: no matches found\nenable-package-registry-proxy pipeline parameter already exists\nEnsuring enable-package-registry-proxy parameter exists for task prefetch-dependencies\nINFO:2026-09-19 20:11:14,016:modify.task:task 'prefetch-dependencies' in '/tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml': param 'enable-package-registry-proxy' already has required values\n"
INFO:2026-09-19 20:11:14,122:migrate:Apply migration of task bundle quay.io/konflux-ci/tekton-catalog/task-validate-fbc:0.2 in package file .tekton/fbc-build-pipeline.yaml
DEBUG:2026-09-19 20:11:14,123:migrate:Run: ['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']
DEBUG:2026-09-19 20:11:15,121:migrate:b'DEBUG:2026-09-19 20:11:14,940:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443\nDEBUG:2026-09-19 20:11:15,058:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-fbc-inject-lifecycle-oci-ta/tag/?page=1&onlyActiveTags=true&specificTag=0.1 HTTP/1.1" 200 295\nusage: pmt add-task [-h] [-n NAME] [-a TASK_NAME] [-p PARAM] [-s] [-g] [-f]\n                    bundle_ref [file_or_dir ...]\npmt add-task: error: argument bundle_ref: Mismatch digest. Tag 0.1 points to a different digest sha256:8160f098d374c18d98acce888b20c3df70f5ce0fc5f4f530c509786557dec5f6\n'
ERROR:2026-09-19 20:11:15,121:migrate:Failed to apply migration: Command '['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']' returned non-zero exit status 2.
INFO:2026-09-19 20:11:15,121:migrate:Apply migration of task bundle quay.io/konflux-ci/tekton-catalog/task-validate-fbc:0.3 in package file .tekton/fbc-build-pipeline.yaml
DEBUG:2026-09-19 20:11:15,121:migrate:Run: ['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']
DEBUG:2026-09-19 20:11:17,633:migrate:b'DEBUG:2026-09-19 20:11:16,641:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443\nDEBUG:2026-09-19 20:11:16,759:urllib3.connectionpool:https://quay.io:443 "GET /api/v1/repository/konflux-ci/tekton-catalog/task-fbc-inject-lifecycle-oci-ta/tag/?page=1&onlyActiveTags=true&specificTag=0.1 HTTP/1.1" 200 295\nDEBUG:2026-09-19 20:11:16,762:urllib3.connectionpool:Starting new HTTPS connection (1): quay.io:443\nDEBUG:2026-09-19 20:11:16,902:urllib3.connectionpool:https://quay.io:443 "GET /v2/konflux-ci/tekton-catalog/task-fbc-inject-lifecycle-oci-ta/manifests/sha256:8160f098d374c18d98acce888b20c3df70f5ce0fc5f4f530c509786557dec5f6 HTTP/1.1" 200 1754\nINFO:2026-09-19 20:11:16,903:add_task:Adding task fbc-inject-lifecycle-oci-ta, bundle quay.io/konflux-ci/tekton-catalog/task-fbc-inject-lifecycle-oci-ta:0.1@sha256:8160f098d374c18d98acce888b20c3df70f5ce0fc5f4f530c509786557dec5f6\nINFO:2026-09-19 20:11:17,138:add_task:Task fbc-inject-lifecycle-oci-ta will be added to pipeline /tmp/renovate/repos/github/openshift/vcf-migration-operator/.tekton/fbc-build-pipeline.yaml\nSuccessfully injected fbc-inject-lifecycle after clone-repository in .tekton/fbc-build-pipeline.yaml\n'
INFO:2026-09-19 20:11:17,633:migrate.transition-to-modify:All migration scripts are using pmt-modify command.
INFO:2026-09-19 20:11:18,118:migrate.transition-to-modify:All migration scripts are using pmt-modify command.
ERROR:2026-09-19 20:11:18,528:cli:Cannot do migration for pipeline. Reason: ExceptionGroup('migrate errors', [ExceptionGroup('Migration apply errors', [ExceptionGroup('Apply migrations errors', [MigrationApplyError("Failed to apply migration: Command '['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']' returned non-zero exit status 2.")])])])
  + Exception Group Traceback (most recent call last):
  |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/cli.py", line 30, in entry_point
  |     main()
  |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/cli.py", line 24, in main
  |     args.action(args)
  |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/cli.py", line 263, in action
  |     _action_impl(args)
  |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/cli.py", line 296, in _action_impl
  |     migrate(upgrades, resolver_class)
  |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/main.py", line 273, in migrate
  |     raise ExceptionGroup("migrate errors", errors)
  | ExceptionGroup: migrate errors (1 sub-exception)
  +-+---------------- 1 ----------------
    | Exception Group Traceback (most recent call last):
    |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/main.py", line 268, in migrate
    |     manager.apply_migrations(skip_bundles=skip_bundles)
    |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/main.py", line 243, in apply_migrations
    |     raise ExceptionGroup("Migration apply errors", errors)
    | ExceptionGroup: Migration apply errors (1 sub-exception)
    +-+---------------- 1 ----------------
      | Exception Group Traceback (most recent call last):
      |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/main.py", line 239, in apply_migrations
      |     op.handle(package_file.file_path)
      |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/pipeline.py", line 41, in handle
      |     self.handle_pipeline_file(file_path, doc, yaml_style)
      |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/main.py", line 161, in handle_pipeline_file
      |     super().handle_pipeline_file(file_path, loaded_doc, style)
      |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/main.py", line 103, in handle_pipeline_file
      |     self._apply_migration(file_path)
      |   File "/home/renovate/.local/share/pipx/venvs/pipeline-migration-tool/lib64/python3.12/site-packages/pipeline_migration/actions/migrate/main.py", line 97, in _apply_migration
      |     raise ExceptionGroup("Apply migrations errors", errors)
      | ExceptionGroup: Apply migrations errors (1 sub-exception)
      +-+---------------- 1 ----------------
        | pipeline_migration.actions.migrate.exceptions.MigrationApplyError: Failed to apply migration: Command '['bash', '/tmp/tmpogadpmme-migration-file', '.tekton/fbc-build-pipeline.yaml']' returned non-zero exit status 2.
        +------------------------------------

@coderabbitai

coderabbitai Bot commented Sep 19, 2026

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Advanced

Run ID: 5b7462f0-6cc9-486a-b0c6-2ea4e58165dd

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Comment @coderabbitai help to get the list of available commands.

@openshift-ci

openshift-ci Bot commented Sep 19, 2026

Copy link
Copy Markdown
Contributor

Hi @red-hat-konflux-kflux-prd-rh02[bot]. Thanks for your PR.

I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@openshift-ci

openshift-ci Bot commented Sep 19, 2026

Copy link
Copy Markdown
Contributor

@red-hat-konflux-kflux-prd-rh02[bot]: all tests passed!

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@jcpowermac

Copy link
Copy Markdown
Contributor

/lgtm
/override renovate/artifacts

@jcpowermac

Copy link
Copy Markdown
Contributor

/approve

@openshift-ci

openshift-ci Bot commented Sep 21, 2026

Copy link
Copy Markdown
Contributor

@jcpowermac: Overrode contexts on behalf of jcpowermac: renovate/artifacts

Details

In response to this:

/lgtm
/override renovate/artifacts

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@openshift-ci

openshift-ci Bot commented Sep 21, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: jcpowermac, red-hat-konflux-kflux-prd-rh02[bot]

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-bot
openshift-merge-bot Bot merged commit 9ae2532 into main Sep 21, 2026
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant