-
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
DeepCopyJSON causes a panic #62769
Comments
There is one more place that creates kubernetes/staging/src/k8s.io/apimachinery/pkg/runtime/converter.go Lines 741 to 792 in 1fcd199
|
See PR ^ for |
I would advise not using a uint64 since it doesn't reliably go through json. ...we should probably have a better way of telling people that, though :) |
We should limit the decoder to int64/float64 |
Ok, I'm going to send another PR with the change to only use |
@thockin Could you as the author of the change to add |
Heh, but then it also says this:
Confusing. |
Alternative PR #62981 |
Automatic merge from submit-queue (batch tested with PRs 61154, 62981). 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 incomplete uint64 support from JSON unmarshaling **What this PR does / why we need it**: Removes `uint64` support from JSON unmarshaling because: - [unsigned types should not be used](https://github.com/kubernetes/community/blob/master/contributors/devel/api-conventions.md#primitive-types); - big numbers (53+ bits) cannot be properly round tripped via JSON in most languages. **Which issue(s) this PR fixes** Fixes kubernetes#62769. **Special notes for your reviewer**: This is an alternative approach to kubernetes#62775. **Release note**: ```release-note NONE ``` /kind bug /sig api-machinery /cc @sttts
What happened:
I have a Custom Resource with a
map[string]interface{}
field in the corresponding Go struct. I have generated most of the DeepCopy functions for it but for that field I have to make the deep copying myself (cannot be generated because of thatinterface{}
). It callsruntime.DeepCopyJSON()
function to do the copying.When I run my integration tests against a cluster with
KUBE_CACHE_MUTATION_DETECTOR=true
I get the following panic:or alternatively (why two ways to log this?):
cannot deep copy uint64
comes fromkubernetes/staging/src/k8s.io/apimachinery/pkg/runtime/converter.go
Lines 449 to 468 in 3e34207
This function was written with assumption that only
int64
/float64
types are generated for numbers. This assumption comes from this codekubernetes/staging/src/k8s.io/apimachinery/pkg/util/json/json.go
Lines 111 to 118 in 5b27f8b
but the jsoniter unmarshaler that is used in the code to parse objects coming from server does something different:
kubernetes/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go
Lines 75 to 88 in 135d58b
What do we want to do? Support
uint64
or only generateint64
/float64
for numbers? Would be great to only have one way to do things.Environment:
Kubernetes 1.10.0, master has the same code.
/kind bug
/sig api-machinery
@kubernetes/sig-api-machinery-bugs
The text was updated successfully, but these errors were encountered: