-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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 created-by annotation #54445
remove created-by annotation #54445
Conversation
4b226ed
to
d6a748c
Compare
/approve |
pkg/controller/controller_utils.go
Outdated
@@ -474,29 +472,12 @@ func getPodsFinalizers(template *v1.PodTemplateSpec) []string { | |||
return desiredFinalizers | |||
} | |||
|
|||
func getPodsAnnotationSet(template *v1.PodTemplateSpec, object runtime.Object) (labels.Set, error) { | |||
func getPodsAnnotationSet(template *v1.PodTemplateSpec, object runtime.Object) labels.Set { |
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.
object
is no longer needed
pkg/kubectl/cmd/drain_test.go
Outdated
orphaned_ds_pod := corev1.Pod{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "bar", | ||
Namespace: "default", | ||
CreationTimestamp: metav1.Time{Time: time.Now()}, | ||
Labels: labels, | ||
SelfLink: testapi.Default.SelfLink("pods", "bar"), | ||
Annotations: missing_ds_anno, | ||
OwnerReferences: []metav1.OwnerReference{ |
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.
This test setup isn't correct. An "orphaned" pod does not have any controller (controllerRef == nil). "Orphan" simply means it's not controlled by anyone, and GC controller "orphans" a resource by removing its controllerRef.
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.
I am aware of it, but i didn't change it as it is not relevant to created-by annotation.
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.
It's actually related, because this controllerRef was mistakenly added here when replacing created-by with controllerRef d76b08d#diff-db0998ca74ee87d106ee23d584f337a5R399
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.
I verified it was me who added the owner reference to the test. I did not know about orphaning at that moment (it was my first PR for k8s main repo). Thanks for catching it!
hack/make-rules/test-cmd-util.sh
Outdated
@@ -1253,7 +1253,7 @@ run_kubectl_run_tests() { | |||
# Post-Condition: Job "pi" is created | |||
kube::test::get_object_assert jobs "{{range.items}}{{$id_field}}:{{end}}" 'pi:' | |||
# Describe command (resource only) should print detailed information | |||
kube::test::describe_resource_assert pods "Name:" "Image:" "Node:" "Labels:" "Status:" "Created By" | |||
kube::test::describe_resource_assert pods "Name:" "Image:" "Node:" "Labels:" "Status:" |
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.
For every kube::test::describe_resource_assert
call to a resource that's controlled by something, verify that "Controlled By" is there too
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.
Does "Controlled By" apply to these?
https://github.com/kubernetes/kubernetes/blob/master/hack/make-rules/test-cmd-util.sh#L520
https://github.com/kubernetes/kubernetes/blob/master/hack/make-rules/test-cmd-util.sh#L3983
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.
As synced by person, the above two tests should not be added with "Controlled By" print attribute. For the first test, we are not interested with it. For the second one, although a node is managed by node controller, "Controlled By" print attribute will look at controllerRef
field, which is not available for nodes.
I also did a thorough search, and added "Controlled By" to only the tests that manage to pass with it.
For future reference, The resource created directly from a YAML file can later be adopted and controlled by a parent resource, in which the resource's Note that the It is possible for a node or a service to have |
When we say A resource can be adopted by other resources dynamically. For example, an RS can be created from a yaml file, and it does not have controllerRef at creation time (because no one controls its lifecycle); however, it can then be adopted (and controlled) by a deployment, and have its controllerRef points to the deployment. Theoretically, a user can create a custom resource (not Kubernetes core resource) that controls a node or service, and have their controllerRef point to the custom resource. |
@janetkuo Thanks for pointing out the custom resource - didn't know about that. Is the custom resource named TPR or CRD? Updated my summary comment too. If everything looks good to you, I will squash. |
LGTM, feel free to squash.
Custom resource can be defined with CRD. CRD supersedes TPR. |
/lgtm |
noted deprecated in https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.8.md#deprecations updated release note with more detailed info /lgtm |
@liggitt Thanks for updating the release note with more detailed info! I will make changes to |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: crimsonfaith91, fejta, janetkuo, kow3ns, liggitt Associated issue: 50720 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Automatic merge from submit-queue (batch tested with PRs 53190, 54790, 54445, 52607, 54801). If you want to cherry-pick this change to another branch, please follow the instructions here. |
Automatic merge from submit-queue (batch tested with PRs 53190, 54790, 54445, 52607, 54801). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. remove created-by annotation **What this PR does / why we need it**: This PR removes `CreatedByAnnotation`. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes kubernetes#50720 **Release note**: ```release-note The `kubernetes.io/created-by` annotation is no longer added to controller-created objects. Use the `metadata.ownerReferences` item that has `controller` set to `true` to determine which controller, if any, owns an object. ```
What this PR does / why we need it:
This PR removes
CreatedByAnnotation
.Which issue this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close that issue when PR gets merged): fixes #50720Release note: