-
Notifications
You must be signed in to change notification settings - Fork 139
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
feat(KONFLUX-2547): Make it possible to configure BuildPipelineSelector #1111
Conversation
/test ? |
@naftalysh: The following commands are available to trigger required jobs:
Use
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/test load-test-ci-10u-10t |
Looks good |
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.
We can change the below line -
return fmt.Errorf("error deleting build pipeline selector %d from %s: %v", i, f.UserNamespace, err)
With
return fmt.Errorf("error deleting build pipeline selector %s from %s: %v", bps.Name, f.UserNamespace, err)
Hello Naftaly. Feedback incorporated. Please take a look now. |
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.
return fmt.Errorf("error deleting build pipeline selector %d from %s: %v", bps.Name, f.UserNamespace, err)
Should be replaced by
return fmt.Errorf("error deleting build pipeline selector %s from %s: %v", bps.Name, f.UserNamespace, err)
That's why you get a lint error
/test load-test-ci-10u-10t |
1 similar comment
/test load-test-ci-10u-10t |
Hi @jhutar |
/test load-test-ci-10u-10t |
/test load-test-ci-10u-10t |
/test load-test-ci-10u-10t |
1 similar comment
/test load-test-ci-10u-10t |
/test load-test-ci-10u-10t |
/test load-test-ci-10u-10t |
@jhutar: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Changes in wait for branch to appear discussed with Pavel Sturc in https://redhat-internal.slack.com/archives/C02FANRBZQD/p1713856264091809
Expose accurate resources metrics into load-tests.json (metrics that overcome the time-skew issue) Signed-Off-By: Naftaly Shprai <[email protected]>
Quality Gate passedIssues Measures |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Obsoleted by #1163 |
Description
Make it possible to configure BuildPipelineSelector
Issue ticket number and link
https://issues.redhat.com/browse/KONFLUX-2547
Type of change
How Has This Been Tested?
Locally against Stage and will run a CI test I guess.