Skip to content
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

Closed
ironcladlou opened this issue Jun 28, 2017 · 12 comments
Closed

Unstructured represents nil Object fields inconsistently #48211

ironcladlou opened this issue Jun 28, 2017 · 12 comments
Assignees
Labels
kind/bug Categorizes issue or PR as related to a bug. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery.

Comments

@ironcladlou
Copy link
Contributor

/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

@k8s-ci-robot k8s-ci-robot added the kind/bug Categorizes issue or PR as related to a bug. label Jun 28, 2017
@k8s-github-robot
Copy link

@ironcladlou There are no sig labels on this issue. Please add a sig label by:
(1) mentioning a sig: @kubernetes/sig-<team-name>-misc
e.g., @kubernetes/sig-api-machinery-* for API Machinery
(2) specifying the label manually: /sig <label>
e.g., /sig scalability for sig/scalability

Note: method (1) will trigger a notification to the team. You can find the team list here and label list here

@k8s-github-robot k8s-github-robot added the needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. label Jun 28, 2017
@deads2k deads2k added sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. and removed needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. labels Jun 28, 2017
@deads2k
Copy link
Contributor

deads2k commented Jun 28, 2017

it should omit for nils that are omitEmpty, right?

@ash2k I couldn't assign you and @ironcladlou, you're assigned in spirit, so comment away :)

@ash2k
Copy link
Member

ash2k commented Jun 29, 2017

it should omit for nils that are omitEmpty, right?

@deads2k I'm not sure what omitEmpty you are talking about? Unstructured does not have any annotations/knowledge about contents of Object field so it just serializes it into JSON as is.

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:

unstructured_test.go:58: {"apiVersion":"v1","kind":"Pod","metadata":{"deletionTimestamp":null,"name":"test","ownerReferences":[{"controller":null}]}}

I think its good to be consistent with how JSON is unmarshalled. Then code that retrieves data from the map does not need to handle nils. At least not for primitive values like int64. Hm, what if actual JSON contains null? I guess the code still needs to handle nil (but not non-nil pointers!). Oh, well.
Anyway, I think its a good idea to not introduce new nil values into the map.

@deads2k
Copy link
Contributor

deads2k commented Jun 29, 2017

@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.

@deads2k
Copy link
Contributor

deads2k commented Jun 29, 2017

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.

@lavalamp
Copy link
Member

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.

@fejta-bot
Copy link

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

Prevent issues from auto-closing with an /lifecycle frozen comment.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or @fejta.
/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jan 1, 2018
@nikhita
Copy link
Member

nikhita commented Jan 16, 2018

/remove-lifecycle stale

@k8s-ci-robot k8s-ci-robot removed the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jan 16, 2018
@fejta-bot
Copy link

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Apr 16, 2018
@nikhita
Copy link
Member

nikhita commented Apr 16, 2018

/remove-lifecycle stale

@k8s-ci-robot k8s-ci-robot removed the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Apr 16, 2018
@fejta-bot
Copy link

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jul 15, 2018
@nikhita
Copy link
Member

nikhita commented Jul 15, 2018

/remove-lifecycle stale

@k8s-ci-robot k8s-ci-robot removed the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jul 15, 2018
k8s-github-robot pushed a commit that referenced this issue Aug 22, 2018
…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
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Categorizes issue or PR as related to a bug. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery.
Projects
None yet
Development

No branches or pull requests

8 participants