Skip to content

Update Konflux references - #37

Open
red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/references/master
Open

Update Konflux references#37
red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/references/master

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Jun 28, 2025

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 minor 0.20.3
quay.io/konflux-ci/tekton-catalog/task-build-image-index (source, changelog) tekton-bundle minor 0.10.3.1
quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta (source, changelog) tekton-bundle minor 0.60.12.0
quay.io/konflux-ci/tekton-catalog/task-clair-scan (source, changelog) tekton-bundle minor 0.30.4.0
quay.io/konflux-ci/tekton-catalog/task-clamav-scan (source, changelog) tekton-bundle patch 0.30.3.1
quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check (source, changelog) tekton-bundle digest 36bcf158b50144
quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check (source, changelog) tekton-bundle digest f59175d0ccc688
quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks (source, changelog) tekton-bundle digest 9568c514619769
quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta (source, changelog) tekton-bundle minor 0.10.2.6
quay.io/konflux-ci/tekton-catalog/task-init (source, changelog) tekton-bundle minor 0.20.4.3
quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta (source, changelog) tekton-bundle minor 0.20.10.1
quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta (source, changelog) tekton-bundle minor 0.10.3.1
quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta (source, changelog) tekton-bundle digest ae62d14e92d00e
quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta (source, changelog) tekton-bundle digest 1f0fcbabeb05ae
quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta (source, changelog) tekton-bundle minor 0.40.5
quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta (source, changelog) tekton-bundle minor 0.30.4
quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta (source, changelog) tekton-bundle digest 5f9069a6bb2697

Release Notes

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

v0.3

  • Switched from bash implementation to Konflux Build CLI.
  • Deprecated older 0.1 and 0.2 versions.
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.

v0.3

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-oci-ta)

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

Version 0.11.1 only has relevant changes for the remote variants of this task.

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.

v0.10

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.9

Fixed
  • Validate base image architecture before build. The task now fails if a base image
    doesn't match the host architecture, preventing silent emulation builds.

v0.8

Fixed
  • Platform build arguments (BUILDPLATFORM, TARGETPLATFORM) now correctly include CPU variant
    for ARM architectures (e.g., linux/arm/v7 or linux/arm64/v8 instead of just linux/arm
    or linux/arm64).

v0.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.
konflux-ci/konflux-test-tasks (quay.io/konflux-ci/tekton-catalog/task-clair-scan)

v0.4

Changed

0.4 is a dummy version used to facilitate the migration from clair-scan 0.3 to roxctl-scan 0.1

v0.3.2

Changed
  • Replaced quay.io/konflux-ci/oras:latest image with quay.io/konflux-ci/task-runner:1.5.0 in the oci-attach-report step.
Added
  • set docker-config-dir in clair-action report command

v0.3.1

Added
  • Declare DOCKER_CONFIG to get get credential to quay.io.
  • Increase retry to 5
konflux-ci/container-build-catalog (quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta)

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.

v0.3

  • 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.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 05:00 AM and 11:59 PM, only on Saturday (* 5-23 * * 6)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from eda930f to f3e2ffc Compare July 5, 2025 06:26
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 0c68508 to 395daea Compare July 19, 2025 06:33
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 395daea to 0219e66 Compare August 9, 2025 08:36
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 0219e66 to 16258a4 Compare August 16, 2025 08:53
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 829f39d to 18a4af8 Compare August 30, 2025 09:04
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 18a4af8 to f46ef85 Compare September 6, 2025 09:02
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from f46ef85 to ec1ea45 Compare September 13, 2025 09:08
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from e831322 to d93378d Compare September 27, 2025 09:01
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from d93378d to ce2cca4 Compare October 4, 2025 09:07
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from ce2cca4 to cfd03f0 Compare October 18, 2025 09:20
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from cfd03f0 to 188acaa Compare November 1, 2025 05:01
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from ca29d54 to 4776a0c Compare November 15, 2025 06:25
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 944c8aa to ca042b2 Compare November 29, 2025 05:16
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from ca042b2 to 0d3bf70 Compare December 6, 2025 05:55
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 31dcccf to 61c2ad8 Compare December 20, 2025 05:46
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 61c2ad8 to aedbb99 Compare January 10, 2026 06:04
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 98af220 to 47cc800 Compare January 24, 2026 05:38
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 47cc800 to 00582a0 Compare January 31, 2026 05:55
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 00582a0 to 5917dd0 Compare February 7, 2026 06:01
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 7b96040 to 2e3dc86 Compare February 21, 2026 06:07
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 2e3dc86 to 741ab1d Compare February 28, 2026 06:48
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 741ab1d to 6967bb9 Compare March 7, 2026 07:20
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 7470645 to 14b8643 Compare March 21, 2026 07:03
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from cf80173 to efa13ca Compare April 4, 2026 07:28
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 66ce819 to 14ea872 Compare April 18, 2026 07:30
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 844c741 to 8496f0a Compare May 2, 2026 07:25
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 327b415 to 86d07f6 Compare May 16, 2026 07:27
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 54a5fc1 to 7cc59a4 Compare May 30, 2026 06:57
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 49d840c to 60f562d Compare June 27, 2026 06:02
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 60f562d to e2f677c Compare July 4, 2026 06:50
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 4847b78 to 2c254c1 Compare July 18, 2026 06:13
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from 0c099df to fd8e8ae Compare August 1, 2026 06:31
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch 2 times, most recently from f839388 to 1501f70 Compare August 15, 2026 06:24
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/references/master branch from 1501f70 to aefcd6a Compare August 22, 2026 06:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants