-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Remove redundant label added to Pods #494
Remove redundant label added to Pods #494
Conversation
Previously, we added a label with key "build.knative.dev/buildName" to Pods. That label was redundant with a different label whose key is "pipeline.knative.dev/taskRun" as of beda1f8. Since we are no longer depending on Knative Build at runtime, it seems best to remove the redundant label. Follow-up to tektoncd#488.
/ok-to-test |
/assign @shashwathi |
The following is the coverage report on pkg/.
|
...I'm going to hold of on |
Thanks @abayer . Appreciate that |
@dwnusbaum : If you would like to follow up with another PR for e2e test with labels then I am okay with merging this PR as is. This PR is pretty contained with cleaning up build label. |
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.
Thanks for following up 👍 appreciate it
@shashwathi Sounds good to me, I will follow up with the e2e tests in another PR |
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dwnusbaum, shashwathi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
nice cleanup! |
Follow-up to review comments from @shashwathi in #488, mostly in reference to #488 (comment).
Specifically, this PR removes the
build.knative.dev/buildName
label since thepipeline.knative.dev/taskRun
label has the same value and the former label is somewhat confusing since we never actually create aBuild
.Still working on e2e tests for labels, I can add them here once I have them ready or in another follow-up if desired.