Skip to content

Update Konflux references - #2

Open
konflux-staging[bot] wants to merge 1 commit into
mainfrom
konflux/references/main
Open

Update Konflux references#2
konflux-staging[bot] wants to merge 1 commit into
mainfrom
konflux/references/main

Conversation

@konflux-staging

@konflux-staging konflux-staging Bot commented Oct 8, 2024

Copy link
Copy Markdown

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.10.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.20.12.0
quay.io/konflux-ci/tekton-catalog/task-clair-scan (source, changelog) tekton-bundle minor 0.20.4.1
quay.io/konflux-ci/tekton-catalog/task-clamav-scan (source, changelog) tekton-bundle minor 0.10.3.2
quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check (source, changelog) tekton-bundle minor 0.40.5
quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks (source, changelog) tekton-bundle minor 0.10.2
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.10.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-rpms-signature-scan (source, changelog) tekton-bundle patch 0.20.2.2
quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta (source, changelog) tekton-bundle minor 0.20.5
quay.io/konflux-ci/tekton-catalog/task-show-sbom (source, changelog) tekton-bundle minor 0.10.3
quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta (source, changelog) tekton-bundle minor 0.10.3

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


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.

v0.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.5

Added
  • Added a new parameter RHSM_MOUNT_CA_CERTS to allow setting [konflux-build-cli]'s
    --rhsm-mount-ca-certs option.

v0.4

Fixed
  • Restores the /cachi2/cachi2.env mount that version 0.10.3 removed.
    Despite being an undocumented implementation detail, some builds use
    the presence of this file as an indicator that the build is hermetic.
    Enable them to do so for the time being.

v0.3

Added
  • Added new parameter ALLOW_CROSS_PLATFORM_IMAGES to allow usage of parent images
    which don't match build host architecture.
Changed
  • When used with prefetch-dependencies >= 0.3.1, no longer edits RUN instructions
    in order to set the prefetch environment variables. Instead, sets the variables
    using buildah --mount + --secret flags. Details in konflux-build-cli#151.
    Fixes [#​1200].
    • As a side effect, also no longer mounts the /cachi2/cachi2.env file,
      whose only purpose was to enable the automatic setting of prefetch variables.
konflux-ci/konflux-test-tasks (quay.io/konflux-ci/tekton-catalog/task-clair-scan)

v0.4.1

Changed

Allign script and task version.

v0.4

Changed

Allign script and task version.

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

v0.3

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

v0.3.2

Added
  • Skip extracting OCI layers that contain only unscannable model-weight files
    (.safetensors, .gguf, .ggml). Other layers are still extracted and
    scanned. If layer listing fails, the task falls back to extracting the
    full image.

v0.3

Changed
  • Skip downloading OCI layers whose manifest annotations name only unscannable
    model-weight files (.safetensors, .gguf, .ggml, .pt, .pth, .onnx,
    .onnx_data / .onnx_data_*), using org.opencontainers.image.title and
    olot.layer.content.inlayerpath. Any other annotated layer is skipped when
    the OCI descriptor size is at least 2000MiB (slightly under ClamAV's ~2GiB
    MaxFileSize), regardless of extension. Layers without those annotations are
    still listed with --dry-run as in 0.3.2. The --dry-run skip uses the
    same name list.

v0.2

Changed
  • Removed sidecar from the task; required tools added to the ClamAV container image.
konflux-ci/konflux-test-tasks (quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check)

v0.5

Added
  • Added support for SPDX SBOMs.
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.

v0.2

konflux-ci/build-definitions (quay.io/konflux-ci/tekton-catalog/task-show-sbom)

v0.3

Fixed

The migration script wasn't attached to the task bundle.

v0.2

Removed

The task show-sbom is deprecated. The migration script deletes it from the pipeline.

konflux-ci/container-build-catalog (quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta)

v0.3

Added
  • BREAKING: new required parameter: BINARY_IMAGE_DIGEST.

    For pipelines that include the build-image-index task, pass its result to this param:

    - name: BINARY_IMAGE_DIGEST
      value: "$(tasks.build-image-index.results.IMAGE_DIGEST)"

    For those that don't, pass the result from the build-container task instead:

    - name: BINARY_IMAGE_DIGEST
      value: "$(tasks.build-container.results.IMAGE_DIGEST)"

    Note: the MintMaker PR updating source-build to v0.3 should apply these changes automatically.

  • Started tracking changes in this file.


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.

@konflux-staging

Copy link
Copy Markdown
Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 7d32db8 to e07757f Compare February 15, 2025 08:04
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from e07757f to c56ecfb Compare February 22, 2025 08:08
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 12693c6 to 6868602 Compare March 8, 2025 08:04
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 6f619b3 to a71c88a Compare March 22, 2025 08:11
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from a71c88a to e998d15 Compare March 29, 2025 08:10
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from b896f78 to 4136f2e Compare April 12, 2025 08:11
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 43b5d7c to dbec8d0 Compare April 26, 2025 08:08
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from f92745f to 7d96ae1 Compare May 10, 2025 08:04
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 7d96ae1 to 76f4a8c Compare May 17, 2025 08:10
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 447505a to 8091087 Compare May 31, 2025 08:13
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 8091087 to 92e4a79 Compare June 7, 2025 08:22
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 92e4a79 to b4624ab Compare July 12, 2025 08:09
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from b4624ab to 5583e43 Compare July 19, 2025 12:10
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 5583e43 to 716ffe5 Compare August 9, 2025 08:12
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 716ffe5 to bdb6d45 Compare September 6, 2025 08:07
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 76e6162 to 2768ec1 Compare September 13, 2025 12:13
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 6 times, most recently from 7f330f7 to 49bbc61 Compare September 25, 2025 04:18
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 04b9a90 to 2188c57 Compare October 25, 2025 20:22
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 919690b to 1de29b2 Compare November 8, 2025 08:25
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from a2b3697 to e2312cf Compare November 8, 2025 20:24
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from e2312cf to 27dc019 Compare November 15, 2025 16:34
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 27f25ff to 2c6b28a Compare December 13, 2025 20:24
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 2c6b28a to c375ca0 Compare December 20, 2025 20:21
@konflux-staging konflux-staging Bot changed the title Update Konflux references Update Konflux references to v0.2 Dec 27, 2025
@konflux-staging konflux-staging Bot changed the title Update Konflux references to v0.2 Update Konflux references Jan 3, 2026
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from c375ca0 to 57c9681 Compare January 3, 2026 16:21
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 6a75c09 to 6385ac5 Compare January 10, 2026 20:22
@konflux-staging konflux-staging Bot changed the title Update Konflux references Update Konflux references to 56f65a1 Jan 17, 2026
@konflux-staging konflux-staging Bot changed the title Update Konflux references to 56f65a1 Update Konflux references Jan 17, 2026
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 3 times, most recently from 9f05ed5 to 0fece2a Compare January 24, 2026 08:23
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 597bda7 to e0af56f Compare January 31, 2026 20:23
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 5ff8aaa to c0dd7b9 Compare February 14, 2026 08:20
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from c0dd7b9 to 2036e16 Compare February 21, 2026 08:13
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 2036e16 to d5b6fe7 Compare February 28, 2026 12:14
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch 2 times, most recently from 0bf27ba to 7ed61e7 Compare March 14, 2026 12:28
@konflux-staging
konflux-staging Bot force-pushed the konflux/references/main branch from 7ed61e7 to a996c4c Compare May 2, 2026 08:20
Signed-off-by: konflux-staging <124796549+konflux-staging[bot]@users.noreply.github.com>
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