Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #92 +/- ##
=======================================
Coverage 73.88% 73.88%
=======================================
Files 30 30
Lines 1302 1302
=======================================
Hits 962 962
Misses 300 300
Partials 40 40
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
E2E Test ResultsCommit: 3ae66c7 |
6564f23 to
d081119
Compare
d081119 to
3ae66c7
Compare
janisz
approved these changes
Mar 26, 2026
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.
Description
Add multi-arch Konflux pipeline
This PR introduces a shared
basic-component-pipeline.yamland migrates both PipelineRun files to reference it instead of embedding the pipeline inline.The previous setup built single-arch (
amd64) images only. This change enables multi-arch release images from the push pipeline while keeping PR builds fast with amd64-only builds.Changes
.tekton/basic-component-pipeline.yamlkind: Pipelineresource usingbuildah-remote-oci-tawith a platform matrix, replacing the previous single-archbuildah-oci-ta..tekton/acs-mcp-server-push.yaml:pipelineSpecwithpipelineRef: basic-component-pipelineamd64,arm64,ppc64le,s390xhermetic: false(will be changed to true in future PRs),build-source-image: true,image-expires-after: 13w(similar config to stackrox),build-image-index: true.tekton/acs-mcp-server-pull-request.yaml**pipelineRefmigrationamd64only (faster PR feedback)5don-pr-image tag prefix is removed. (not so important)Review hint
Changes are minimal to keep review easier. If it's hard to review in GitHub, one way is to copy
basic-component-pipeline.yamlcontent and compare with oldacs-mcp-server-push.yamlandacs-mcp-server-pull-request.yaml.Validation