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 Change Notes
quay.io/konflux-ci/tekton-catalog/task-apply-tags (source, changelog) 0.20.3 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-build-image-index (source, changelog) 0.10.3 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta (source, changelog) 0.60.10 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-clair-scan (source, changelog) 8ec7d7b8fad4c2
quay.io/konflux-ci/tekton-catalog/task-clamav-scan (source, changelog) f3d2d17567cb66
quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check (source, changelog) 36bcf158b50144
quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check (source, changelog) f59175de78d0d3
quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks (source, changelog) 9568c513c4f60e
quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta (source, changelog) bb2f8f1d30f13d
quay.io/konflux-ci/tekton-catalog/task-init (source, changelog) 0.20.4 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta (source, changelog) 0.20.3 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta (source, changelog) 0.10.3 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta (source, changelog) ae62d14e92d00e
quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta (source, changelog) 1f0fcbae5319fc
quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta (source, changelog) 0.40.5 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta (source, changelog) 0.30.4 ⚠️migration⚠️
quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta (source, changelog) 5f9069a8567bb7

Release Notes

konflux-ci/build-definitions (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-definitions (quay.io/konflux-ci/tekton-catalog/task-build-image-index)

v0.3

Changed
  • The task now uses konflux-build-cli for the build step instead of an inline bash
    implementation. This provides more robust error handling and simplified maintenance.
  • When ALWAYS_BUILD_INDEX is false and multiple images are provided, the task now
    creates an image index instead of failing. The previous behavior (failing with an error)
    was not useful.
  • Image reference validation is now stricter and will fail earlier for invalid formats.
Removed
  • COMMIT_SHA parameter (was not used by the task implementation)
  • IMAGE_EXPIRES_AFTER parameter (was not used by the task implementation)
Added
  • Started tracking changes in this file.
konflux-ci/build-definitions (quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta)

v0.10

This version introduces konflux-build-cli. The build step replaces most of the Bash with
konflux-build-cli image build. Other steps still use Bash, this will change soon.

We expect version 0.10 to behave the same as version 0.9 for the vast majority
of use cases. All known (minor) differences documented below.

Added
  • The vcs-url label. Previously, the task would inject the following vcs-related labels:
    • org.opencontainers.image.revision and its legacy counterpart,
      vcs-ref
    • org.opencontainers.image.source and nothing else
      • Version 0.10 adds the missing legacy counterpart, vcs-url
Changed
  • The precedence of default annotations (those injected by the task automatically)
    • Before: ANNOTATIONS_FILE < ANNOTATIONS < default annotations
    • Now: default annotations < ANNOTATIONS_FILE < ANNOTATIONS
  • When handling the YUM_REPOS_D_SRC and YUM_REPOS_D_FETCHED directories,
    injects only regular files into /etc/yum.repos.d. Previously, the task would
    inject the directories as a whole. /etc/yum.repos.d is a flat structure, so
    the task now injects only regular files to avoid injecting unexpected content.
  • Prefetch integration:
    • Looks for both prefetch.env and cachi2.env in the prefetch dir (in this order).
      Version 0.3.1 of the prefetch task added prefetch.env and a future version
      will remove cachi2.env.
    • Doesn't rely specifically on cachi2.repo files to enable RPM integration,
      just needs any *.repo file at the expected path.
    • In case the YUM_REPOS_D_SRC or YUM_REPOS_D_FETCHED directories contain
      a repo file with the same name as the repo file from Hermeto, the Hermeto
      repo takes precedence. Previously, YUM_REPOS_* would take precedence.
    • Doesn't copy the prefetch files to /tmp, instead copies them to a directory
      on the same filesystem as the original files. This uses copy-on-write and avoids
      duplicating the underlying data.
  • Red Hat subscription-manager integration:
    • Will mount the RHSM CA certificates into the build in two cases:
      • When using ACTIVATION_KEY and the containerfile doesn't include
        subscription-manager register (same as before)
      • When using ENTITLEMENT_SECRET (not done before and should have been)
    • When mounting RHSM CA certificates, mounts the whole /etc/rhsm/ca directory
      instead of mounting a specific file. This closes #​1621.
Fixed
  • Injecting metadata to /usr/share/buildinfo and /root/buildinfo:
    • Does not write any new files or modify any existing files in the source directory,
      injects the files using a separate build-context.
    • Will log a warning if the TARGET param is set and SKIP_INJECTIONS=false
      (using TARGET disables metadata injection anyway). Metadata injection never
      worked with a non-default target, version 0.10 just adds the warning.
    • Injecting labels.json:
      • Will skip LABEL instructions in stages that don't affect the labels of the final image.
      • Will correctly omit the io.buildah.version label when SOURCE_DATE_EPOCH is non-empty.
        Previously, labels.json would always include io.buildah.version.
  • Pre-pulling base images for hermetic builds and base-arch verification (see 0.9.4):
    • Also pulls images referenced in COPY --from=$image and RUN --mount=from=$image.
      Previously, would only pull images referenced as FROM $image.
    • Does not pull images for unused stages (unless SKIP_UNUSED_STAGES=false).
    • Will skip image references with transports that don't
      represent pullable images. Specifically, will only pull transport-less references
      and docker:// references. Previously, the task would skip oci-archive: references
      but fail on any other kind of non-standard reference.
  • Modifying the containerfile to set prefetch environment variables in RUN instructions:
    • No longer mangles RUN instructions that use the exec form or a bare here-doc.
      Instead skips the instruction and logs a warning.

      RUN ["echo", "skips exec-form commands"]
      
      RUN <<EOF
      echo "skips bare heredocs"
      EOF
      
      RUN bash -e <<EOF
      echo "supports heredocs if they start with something other than the <<marker"
      EOF
      • This partially fixes #​1200, in the sense that the containerfile at least
        doesn't become broken. The unsupported instructions don't automatically get
        the variables that may be required to make the hermetic build work though.
    • Fixes dozens of small bugs that most users never would have hit. For example,
      version 0.10:

      • Doesn't mangle heredoc lines that look line RUN instructions
      • Doesn't inject text into the middle of a string with quoted/escaped whitespace
      • Properly handles backtick-escaped containerfiles

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

Added
  • Started tracking changes in this file.
konflux-ci/build-definitions (quay.io/konflux-ci/tekton-catalog/task-init)

v0.4

  • Pipeline upgrade: Remove PipelineRun parameter sast-target-dirs with invalid attributes from PipelineRun .spec.params definition

v0.3

  • Remove params image-url, rebuild and skip-checks
  • Remove task result build
konflux-ci/build-definitions (quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta)

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.
konflux-ci/build-definitions (quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta)

v0.3

Fixed
  • Use Dockerfile as the file name in the uploaded artifact, regardless of the name of the actual file.

v0.2

Removed
  • BREAKING: Support for Dockerfile downloading in Konflux Build Pipeline.

Configuration

📅 Schedule: Branch creation - Between 05:00 AM and 11:59 PM, only on Saturday ( * 5-23 * * 6 ) (UTC), 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
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 7cc59a4 to 49d840c Compare June 20, 2026 07:26
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