-
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
Unstructured represents nil Object fields inconsistently #48211
Comments
@ironcladlou There are no sig labels on this issue. Please add a sig label by: |
it should omit for nils that are @ash2k I couldn't assign you and @ironcladlou, you're assigned in spirit, so comment away :) |
@deads2k I'm not sure what func TestNil(t *testing.T) {
u := Unstructured{
Object: map[string]interface{}{
"kind": "Pod",
"apiVersion": "v1",
"metadata": map[string]interface{}{
"name": "test",
//"deletionTimestamp": nil,
"ownerReferences": []map[string]interface{}{
{
"controller": nil,
},
},
},
},
}
u.SetDeletionTimestamp(nil)
data, _ := u.MarshalJSON()
t.Logf("%s", data)
} Outputs:
I think its good to be consistent with how JSON is unmarshalled. Then code that retrieves data from the |
@ash2k whether or not it is present is based on the omitEmpty tag here: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go#L184. If it isn't omit empty, you should write out an explicit nil. |
For fields we know about like type and objectMeta, it makes sense to remove. I'm less certain of fields we don't have knowledge of which may or may not be omitEmpty. Leaving it up to the caller seems to make sense. |
I think code dealing with maps like this needs to handle both possibilities. That's just defensive coding :/ Functions can of course be written to make the error handling less verbose. |
Issues go stale after 90d of inactivity. Prevent issues from auto-closing with an If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/remove-lifecycle stale |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/remove-lifecycle stale |
…ch-04 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 <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Fix unstructured metadata accessors to respect omitempty semantics Fixes #67541 Fixes #48211 Fixes #49075 Follow up of #67562 `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 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**: ```release-note NONE ```
/kind bug
During the course of #48065, @ash2k noted that Unstructured is storing internal fields backing Object methods inconsistently with regards to nil. For example, SetOwnerReferences omits nil keys from the internal map, while SetInitializers, SetLabels, SetAnnotations, and SetDeletionTimestamp retain keys for nil values.
To remain consistent with marshalling behavior, we propose that Unstructured should omit keys for nil values internally for all fields which back Object methods.
/cc @ash2k @deads2k @caesarxuchao
The text was updated successfully, but these errors were encountered: