Fix buildah-oci-ta and source-build-oci-ta bundle refs in push pipeline#34
Merged
Conversation
…pipeline PR #33 introduced two mistakes in foreman-develop-push.yaml: - buildah-oci-ta was left pointing at the upstream Konflux bundle instead of the custom quay.io/foreman/tekton-catalog/task-buildah-oci-ta bundle - source-build-oci-ta accidentally got the task-buildah-oci-ta bundle digest instead of its own upstream source-build-oci-ta bundle, causing "could not find object in image with kind: task and name: source-build-oci-ta" on every post-merge push pipeline run Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
PR #33 introduced two mistakes in
.tekton/foreman-develop-push.yamlthat broke every post-merge push pipeline run with:Root cause
buildah-oci-taquay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.9@sha256:681d9f65…quay.io/foreman/tekton-catalog/task-buildah-oci-ta@sha256:4b16776e…source-build-oci-taquay.io/foreman/tekton-catalog/task-buildah-oci-ta@sha256:4b16776e…← wrong bundlequay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:0917cfc7…The
buildah-oci-tadigest was copy-pasted ontosource-build-oci-taby mistake. Our custom bundle only containsbuildah-oci-ta, so the resolver correctly rejects the lookup forsource-build-oci-ta.The pull-request pipeline (
.tekton/foreman-develop-pull-request.yaml) was already correct and does not need changes.Fix
Two line changes in
foreman-develop-push.yaml— matching what the pull-request pipeline already has.🤖 Generated with Claude Code