-
Notifications
You must be signed in to change notification settings - Fork 321
kueue: Assign release priority to internal-pipelinerun child pipelines (production base) #10310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: arewm The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
🤖 Gemini AI Assistant AvailableHi @arewm! I'm here to help with your pull request. You can interact with me using the following commands: Available Commands
How to Use
PermissionsOnly OWNER, MEMBER, or COLLABORATOR users can trigger my responses. This ensures secure and appropriate usage. This message was automatically added to help you get started with the Gemini AI assistant. Feel free to delete this comment if you don't need assistance. |
|
🤖 Hi @arewm, I've received your request, and I'm working on it now! You can track my progress in the logs for more details. |
Child pipelines created by internal-pipelinerun (such as signing pipelines) were receiving the default priority (400) instead of release priority (1000). This caused them to be blocked behind multi-arch build pipelines waiting for ppc64le/s390x capacity, even though signing pipelines don't require those resources. Add a CEL rule to recognize pipelines with the internal-services.appstudio.openshift.io/pipelinerun-uid label and assign them konflux-release priority, matching their parent managed release pipelines. Assisted-by: Claude Code (Opus 4.5)
c1f7932 to
8fe7485
Compare
|
|
||
| plrNamespace == 'mintmaker' ? priority('konflux-dependency-update') : | ||
|
|
||
| has(pipelineRun.metadata.labels) && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to update the test for this pr as well
gbenhaim
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary
internal-services.appstudio.openshift.io/pipelinerun-uidlabelkonflux-releasepriority, matching their parent managed release pipelinesBackground
Child pipelines created by internal-pipelinerun (such as signing pipelines) were receiving the default priority (400) instead of release priority (1000). This caused them to be blocked behind multi-arch build pipelines waiting for ppc64le/s390x capacity, even though signing pipelines don't require those resources.
🤖 Generated with Claude Code