-
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
Fix unstructured metadata accessors to respect omitempty semantics #67635
Fix unstructured metadata accessors to respect omitempty semantics #67635
Conversation
Does this need a "action required" release note? |
How is this even passing golint? There are so many linting errors in there. 🤷♀️ /lint |
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.
@nikhita: 2 warnings.
In response to this:
Some packages in hack/.golint_failures are passing golint. Please remove them. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured
How is this even passing golint? There are so many linting errors in there. 🤷♀️
/lint
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.
u.setNestedField(string(uid), "metadata", "uid") | ||
} | ||
|
||
func (u *Unstructured) GetResourceVersion() string { | ||
return getNestedString(u.Object, "metadata", "resourceVersion") | ||
} | ||
|
||
func (u *Unstructured) SetResourceVersion(version string) { | ||
u.setNestedField(version, "metadata", "resourceVersion") | ||
func (u *Unstructured) SetResourceVersion(resourceVersion 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.
Golint naming: receiver name u should be consistent with previous receiver name obj for Unstructured. More info.
u.setNestedField(name, "metadata", "name") | ||
} | ||
|
||
func (u *Unstructured) GetGenerateName() string { | ||
return getNestedString(u.Object, "metadata", "generateName") | ||
} | ||
|
||
func (u *Unstructured) SetGenerateName(name string) { | ||
u.setNestedField(name, "metadata", "generateName") | ||
func (u *Unstructured) SetGenerateName(generateName 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.
Golint naming: receiver name u should be consistent with previous receiver name obj for Unstructured. More info.
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.
well that's annoying
ObjectMeta has fields with omitempty json tags. This means that when the fields have zero values, they should not be persisted in the object. Before this commit, some of the metadata accessors for unstructured objects did not respect these semantics i.e they would persist a field even if it had a zero value. This commit updates the accessors so that the field is removed from the unstructured object map if it contains a zero value.
039005a
to
dabd56f
Compare
/lint |
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.
@nikhita: 2 unresolved warnings and 6 new warnings.
In response to this:
/lint
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.
@@ -79,8 +79,8 @@ func (obj *Unstructured) ToList() (*UnstructuredList, error) { | |||
return ret, nil | |||
} | |||
|
|||
func (obj *Unstructured) EachListItem(fn func(runtime.Object) error) error { | |||
field, ok := obj.Object["items"] | |||
func (u *Unstructured) EachListItem(fn func(runtime.Object) error) error { |
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.
Golint comments: exported method Unstructured.EachListItem should have comment or be unexported. More info.
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.
None of the methods in that file have comments and it doesn't really make sense to add to each one either. :/
@@ -100,15 +100,15 @@ func (obj *Unstructured) EachListItem(fn func(runtime.Object) error) error { | |||
return nil | |||
} | |||
|
|||
func (obj *Unstructured) UnstructuredContent() map[string]interface{} { | |||
if obj.Object == nil { | |||
func (u *Unstructured) UnstructuredContent() map[string]interface{} { |
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.
Golint comments: exported method Unstructured.UnstructuredContent should have comment or be unexported. More info.
} | ||
|
||
func (obj *Unstructured) SetUnstructuredContent(content map[string]interface{}) { | ||
obj.Object = content | ||
func (u *Unstructured) SetUnstructuredContent(content map[string]interface{}) { |
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.
Golint comments: exported method Unstructured.SetUnstructuredContent should have comment or be unexported. More info.
@@ -48,26 +48,26 @@ type Unstructured struct { | |||
var _ metav1.Object = &Unstructured{} | |||
var _ runtime.Unstructured = &Unstructured{} | |||
|
|||
func (obj *Unstructured) GetObjectKind() schema.ObjectKind { return obj } | |||
func (u *Unstructured) GetObjectKind() schema.ObjectKind { return u } |
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.
Golint comments: exported method Unstructured.GetObjectKind should have comment or be unexported. More info.
|
||
func (obj *Unstructured) IsList() bool { | ||
field, ok := obj.Object["items"] | ||
func (u *Unstructured) IsList() bool { |
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.
Golint comments: exported method Unstructured.IsList should have comment or be unexported. More info.
if !ok { | ||
return false | ||
} | ||
_, ok = field.([]interface{}) | ||
return ok | ||
} | ||
func (obj *Unstructured) ToList() (*UnstructuredList, error) { | ||
if !obj.IsList() { | ||
func (u *Unstructured) ToList() (*UnstructuredList, error) { |
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.
Golint comments: exported method Unstructured.ToList should have comment or be unexported. More info.
don't feed the linter... it'll just want another cookie :) |
0eb1f27
to
dabd56f
Compare
:) I removed the last commit which tried to fix the golint errors. It's back to how it was before in the previous PR. |
Regarding the linting: kubernetes/hack/verify-golint.sh Lines 75 to 76 in 816f2a4
Looks like this completely ignores all errors if it sees a |
If golint sees a kubernetes/hack/verify-golint.sh Line 77 in 816f2a4
|
this LGTM. @sttts, was there a way we were collecting dev-related release notes for client-go/apimachinery usage? I'm not sure this change makes sense as a user-facing release note, but seems worthwhile to capture for users of the go libraries |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: liggitt, nikhita 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 |
manually. :/
I was doing the manual release note process work for client-go anyway, so I'll take care of the release note for this one. |
Quick update here: there is a golint fix now - #67675 🎉 |
This LGTM. One question: do we need to check zero values for |
No valid serialized object has those set to empty values, so I don't think so |
Automatic merge from submit-queue (batch tested with PRs 67298, 67518, 67635, 67673). If you want to cherry-pick this change to another branch, please follow the instructions here. |
@liggitt we don't have prow support. But we usually use |
Fixes #67541
Fixes #48211
Fixes #49075
Follow up of #67562
ObjectMeta
has fields withomitempty
json tags. This means that when the fields have zero values, they should not be persisted in the object.Before this PR, some of the metadata accessors for unstructured objects did not respect these semantics i.e they would persist a field even if it had a zero value.
This PR updates the accessors so that the field is removed from the unstructured object map if it contains a zero value.
/sig api-machinery
/kind bug
/area custom-resources
/cc sttts liggitt yue9944882 roycaihw
/assign sttts liggitt
Release note: