-
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
Proposal: Refactor pkg/api/unversioned #37530
Comments
@kubernetes/sig-api-machinery |
It seems like this "dependency" only extends to the metadata representation. Will we get to have an unstructure type that includes a |
We can move |
Yeah probably. It has some overlap with client as well. |
Not opposed.
Yes. Not sure exactly how to structure it, it's possible it should just be a layer on top. That's what Accessor was originally supposed to abstract. |
Please make sure the client's copy.sh script still runs before checking
this in :)
…On Mon, Nov 28, 2016 at 6:57 AM, Clayton Coleman ***@***.***> wrote:
pkg/apis/meta/internalversion instead perhaps?
Not opposed.
It seems like this "dependency" only extends to the metadata
representation.
Yes. Not sure exactly how to structure it, it's possible it should just be
a layer on top. That's what Accessor was originally supposed to abstract.
—
You are receiving this because you are on a team that was mentioned.
Reply to this email directly, view it on GitHub
<#37530 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAngliyNPGa45zeDOgiUU2PbU2DRBem1ks5rCuv3gaJpZM4K9NSq>
.
|
I've been using it for the last couple of refactors - haven't hit any
problems *yet*. I did have to tweak for Mac but I haven't merged it
because I'm afraid of breaking Linux.
On Tue, Nov 29, 2016 at 8:09 PM, Daniel Smith <[email protected]>
wrote:
… Please make sure the client's copy.sh script still runs before checking
this in :)
On Mon, Nov 28, 2016 at 6:57 AM, Clayton Coleman ***@***.***
>
wrote:
> pkg/apis/meta/internalversion instead perhaps?
>
> Not opposed.
>
> It seems like this "dependency" only extends to the metadata
> representation.
>
> Yes. Not sure exactly how to structure it, it's possible it should just
be
> a layer on top. That's what Accessor was originally supposed to abstract.
>
> —
> You are receiving this because you are on a team that was mentioned.
> Reply to this email directly, view it on GitHub
> <https://github.com/kubernetes/kubernetes/issues/
37530#issuecomment-263292061>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/
AAngliyNPGa45zeDOgiUU2PbU2DRBem1ks5rCuv3gaJpZM4K9NSq>
> .
>
—
You are receiving this because you were assigned.
Reply to this email directly, view it on GitHub
<#37530 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABG_p_Xc4LymwRnbU5_BDWFWWX1R9BjHks5rDMzFgaJpZM4K9NSq>
.
|
Automatic merge from submit-queue Remove ExportOptions from api/internal and use unversioned Should only have one internal object in use Part of #37530
Automatic merge from submit-queue (batch tested with PRs 36816, 37534) Move pkg/api/unversioned to pkg/apis/meta/v1 This moves code from using pkg/api/unversioned to pkg/apis/meta/v1 with the `metav1` local package name. Built on top of #37532 (the first three commits related to ExportOptions) Part of #37530
Automatic merge from submit-queue (batch tested with PRs 38058, 38523) Move unstructured types under `meta/v1` to indicate they are typed Add a few abstractions that make them simpler to use from generic code that does not need accessors. Move OwnerReference to meta/v1 and remote metatypes.go Part of #37530
@smarterclayton There are no sig labels on this issue. Please add a sig label by: |
As part of #33900 and also long running desires to clean up some incomplete abstractions, we need to normalize and resolve the status of
pkg/api/unversioned
(which is versioned) by moving it to a versioned package.pkg/apis/meta/v1
, or associated with that package.pkg/apis/meta/internalversion
pkg/apis/meta/v1
AddToGroupVersion
method frompkg/apis/meta/v1
that registers common types, and other group versions will stop directly registering*Options
and other reusable types.pkg/apis/meta/v1
Refactors to perform:
pkg/api/unversioned
topkg/apis/meta/v1
and usemetav1
to reference itThis identifies that these types are "versioned" and will be part of the "meta.k8s.io" API group in Proposal for alternate API representations of resources #33900. This group composes all of our common, cross group reusable bits. We use
metav1
to reference it internally to be consistent with our other versioned API package names.pkg/watch/versioned
intopkg/apis/meta/v1
, and move the decoder/encoder in that package intopkg/client/restclient/watch
The watch event is versioned and has minor conversion logic. The decoders and encoders are used only be
pkg/apiserver
andpkg/client/restclient
.pkg/runtime/unstructured*.go
intopkg/apis/meta/v1/unstructured
The unstructured types implicitly depend on the metav1 schema (they cannot be used against any other type) and should be identified as versioned locked. In the future, we could introduce abstractions that let us pick the appropriate unstructured type.
pkg/api/types.go#ListOptions|ExportOptions|DeleteOptions
topkg/apis/meta
These are internal types deserialized from client input and used by client libraries and
pkg/apiserver
.ObjectMeta
intopkg/apis/meta/v1
and remove the internalObjectMeta
ObjectMeta is part of the metav1 api (used by unstructured) and so should not be represented differently. All internal code should be adapted to use this field.
pkg/api/meta/metatypes
and usepkg/apis/meta/v1
insteadpkg/api/meta
in favor of methods inpkg/apis/meta/v1
.pkg/api/unversioned
as required byheapster/metrics/v1alpha
temporarily to preserve internal code until we can update heapster to use the new package.The text was updated successfully, but these errors were encountered: