CALUNGA-268: Increase builder build-container resources from 4.6cpu/8…#288
Merged
Conversation
…Gi to 8cpu/12Gi and pipeline timeout from 2h to 3h Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Reviewer's GuideThis PR increases the Tekton plumbing-builder pipeline robustness by extending the overall pipeline timeout to 3 hours and explicitly allocating higher CPU/memory resources (8 CPU / 12Gi) to the build step of the build-container task in both pull-request and push pipelines. Flow diagram for updated Tekton plumbing-builder pipelines (timeout and resources)flowchart TD
GitPR[Git pull_request event]
GitPush[Git push event]
GitPR --> PRPipeline[plumbing-builder-pull-request pipeline]
GitPush --> PushPipeline[plumbing-builder-push pipeline]
PRPipeline --> PRBuildTask[build-container task]
PushPipeline --> PushBuildTask[build-container task]
PRBuildTask --> PRBuildStep[build step\nresources: 8cpu / 12Gi\npipeline timeout: 3h]
PushBuildTask --> PushBuildStep[build step\nresources: 8cpu / 12Gi\npipeline timeout: 3h]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- The same timeout and computeResources configuration is duplicated in both the pull-request and push pipeline YAMLs; consider factoring this into a shared template or overlay if your Tekton setup supports it to reduce drift risk.
- You’ve set CPU and memory requests equal to limits (8 CPU / 12Gi); if you expect bursty builds or want to avoid potential throttling, consider lowering requests relative to limits or documenting the rationale for using guaranteed QoS here.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The same timeout and computeResources configuration is duplicated in both the pull-request and push pipeline YAMLs; consider factoring this into a shared template or overlay if your Tekton setup supports it to reduce drift risk.
- You’ve set CPU and memory requests equal to limits (8 CPU / 12Gi); if you expect bursty builds or want to avoid potential throttling, consider lowering requests relative to limits or documenting the rationale for using guaranteed QoS here.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Contributor
|
/ok-to-test |
…to 3h Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
|
/ok-to-test |
jvulgan
approved these changes
May 14, 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.
…Gi to 8cpu/12Gi and pipeline timeout from 2h to 3h
Summary by Sourcery
Increase Tekton plumbing builder pipelines resource allocation and execution timeout for container build steps.
Build: