-
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
apimachinery: remove ObjectCopier interface(s) #53525
apimachinery: remove ObjectCopier interface(s) #53525
Conversation
d736319
to
8621359
Compare
@sttts: Adding do-not-merge/release-note-label-needed because the release note process has not been followed. One of the following labels is required "release-note", "release-note-action-required", or "release-note-none". 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. |
ec9c269
to
db99a9d
Compare
/approve |
62d9f04
to
58402ab
Compare
3315ffa
to
747a6f5
Compare
747a6f5
to
ecb65a6
Compare
/retest |
/approve no-issue |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: smarterclayton, sttts Associated issue requirement bypassed by: sttts 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 |
return nil, fmt.Errorf("UnstructuredCopier can't copy type %T", obj) | ||
} | ||
|
||
// serialize and deserialize to ensure a clean copy |
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 this is the only one that concerns me. DeepCopy of unstructured works the way we need it to now?
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 think we didn't have deepcopy funcs on Unstructured at the time of writing. Now we do, using structural recursion instead of encode+decode. So potentially the new deepcopy is also faster.
one question. lgtm otherwise. |
Automatic merge from submit-queue (batch tested with PRs 53525, 53652). If you want to cherry-pick this change to another branch, please follow the instructions here. |
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
- k8s.io/kubernetes/pkg/api/v1/helper -> k8s.io/kubernets/pkg/apis/core/v1/helper - Remove Scheme.DeepCopy, see kubernetes/kubernetes#53525 - Move global scheme to pkg/api/legacyscheme, see kubernetes/kubernetes#53984 - Add hack scripts to update CRD deepcopy generated files to 1.9.2.
The big commit is a mechanical, transitive removal of the copier interfaces in all structs and function calls.