-
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
output empty creationTimestamp as null #53464
output empty creationTimestamp as null #53464
Conversation
Hi @juanvallejo. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with I understand the commands that are listed here. 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. |
/assign fabianofranz |
@juanvallejo: GitHub didn't allow me to assign the following users: shyiwang. Note that only kubernetes members can be assigned. 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. |
/ok-to-test |
/test pull-kubernetes-e2e-gce-bazel |
Lgtm, would like to see a test |
d78cd09
to
465edb2
Compare
@liggitt thanks, test added |
@@ -464,6 +464,10 @@ func (u *Unstructured) GetCreationTimestamp() metav1.Time { | |||
|
|||
func (u *Unstructured) SetCreationTimestamp(timestamp metav1.Time) { | |||
ts, _ := timestamp.MarshalQueryParameter() | |||
if len(ts) == 0 { | |||
u.setNestedField(nil, "metadata", "creationTimestamp") |
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.
hmm... actually, should this be storing nil
or removing from the map? @ironcladlou, any thoughts here?
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 suggested removing nil keys from the map generally in #48211, but I wouldn't say there's consensus on that point yet.
@deads2k suggested we rely on omitempty
in the external types to accommodate a nil here (mirroring his prior counterpoint to #48211 (comment)), which I'm fine with.
Maybe some more godocs would help here in the meantime?
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 field is omitempty.
@juanvallejo I prefer to delete the entry, then this lgtm.
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, will update
@ironcladlou thanks for your feedback on this; per our conversation I added a round trip test From the PR's description:
|
d06e84c
to
327353c
Compare
/retest |
327353c
to
a358092
Compare
2d4692e
to
62a8e47
Compare
62a8e47
to
288e21f
Compare
@@ -258,6 +258,10 @@ func (u *Unstructured) GetCreationTimestamp() metav1.Time { | |||
|
|||
func (u *Unstructured) SetCreationTimestamp(timestamp metav1.Time) { | |||
ts, _ := timestamp.MarshalQueryParameter() | |||
if len(ts) == 0 { | |||
RemoveNestedField(u.Object, "metadata", "creationTimestamp") |
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.
@sttts creationtime is an omitEmpty
field, so when it is zero value it doesn't get serialized. While I may not detect it this way (@juanvallejo can you check if the passed timestamp
is zero value), removing the field when this happens is reasonable.
Also, the current serialization is incorrect. We should never produce one with an empty string.
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.
creationtime is an omitEmpty field, so when it is zero value it doesn't get serialized
actually, since it's a struct in ObjectMeta, it still does (yay, go json), but logically, should not
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.
7d34131
to
e7ca207
Compare
lgtm, please squash for merge. |
e7ca207
to
2008750
Compare
@deads2k thanks, commits squashed |
/test pull-kubernetes-e2e-kops-aws |
/lgtm |
/approve no-issue |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: fabianofranz, juanvallejo, liggitt No associated issue. Update pull-request body to add a reference to an issue, or get approval with 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 |
/sig cli |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue (batch tested with PRs 55050, 53464, 54936, 55028, 54928). If you want to cherry-pick this change to another branch, please follow the instructions here. |
@juanvallejo: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. |
Release note
Updates the value of the
creationTimestamp
field to benull
when empty, to keep parity between it and
deletionTimestamp
.Adds a round-trip test to ensure that unstructured objects containing
empty metadata fields are able to be re-converted back into internal
or external objects. Prior to the proposed patch in this PR, an
unstructured object whose
.metadata.creationTimestamp
value hadbeen set through the metadata accessor to an empty value
(
metav1.Time{}
in this case), was unable to be re-converted to aninternal or external type using the runtime decoder. Conversion would
fail with the error:
cc @liggitt @fabianofranz