-
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
Bringing server-side printing to beta summary #58536
Comments
Suggest we split this down the middle - I'll handle server side and Juan you can handle client side |
Sounds good to me. |
cc @yliaog |
Existing prototype PR for item 1 under |
Overlapping #53224 |
Hi! This item is tagged as being for 1.10. Given the checklist of tasks, which individual items are actually going into 1.10? And, if you're tracking this for 1.10, can you please add kind/ and priority/ labels? Thanks! |
Automatic merge from submit-queue (batch tested with PRs 59158, 38320, 59059, 55516, 59357). 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>. Promote v1alpha1 meta to v1beta1 No code changes, just renames. We can discuss if there are any field / naming changes here or in a follow-up Parent #58536 Fixes #53224 Prereq to #55637 @kubernetes/sig-api-machinery-pr-reviews @deads2k ```release-note The `meta.k8s.io/v1alpha1` objects for retrieving tabular responses from the server (`Table`) or fetching just the `ObjectMeta` for an object (as `PartialObjectMetadata`) are now beta as part of `meta.k8s.io/v1beta1`. Clients may request alternate representations of normal Kubernetes objects by passing an `Accept` header like `application/json;as=Table;g=meta.k8s.io;v=v1beta1` or `application/json;as=PartialObjectMetadata;g=meta.k8s.io;v1=v1beta1`. Older servers will ignore this representation or return an error if it is not available. Clients may request fallback to the normal object by adding a non-qualified mime-type to their `Accept` header like `application/json` - the server will then respond with either the alternate representation if it is supported or the fallback mime-type which is the normal object response. ```
@smarterclayton could you please help update the status of this feature? I notice that this is release goal of SIG-CLI 1.10, also anything I could help with? I just got more time to focus on community stuff. |
From @jberkus
|
Given that this is a tracker issue, can you break out the items which are actually going to get into 1.10, put those in their own issues with the milestone, and take this tracker out of the milestone? Thanks! |
Automatic merge from submit-queue (batch tested with PRs 60106, 59510, 60263, 60063, 59088). 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>. Refactor service storage to remove registry wrapper This exposes the correct table exporter to the API endpoint, which is a prereq for server side GET to beta. Removing the use of the registry simplifies a few complex changes but results in test abstractions changing. Part of #58536
…-response-proto-v2 Automatic merge from submit-queue (batch tested with PRs 55637, 57461, 60268, 60290, 60210). 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>. Update get.go to use server-side printing Addresses part of #58536 Adds support for server-side changes implemented in #40848 and updated in #59059 @deads2k per our discussion, opening this as a separate PR. This wires through a per-request use of `as=Table;...` header parameters using the resource builder from the `kube get` command. #### Items to consider going forward: - [ ] Figure out how to handle sorting when dealing with multiple Table objects from the server - [ ] Figure out sorting when dealing with a mixed response from the server consisting of Tables and normal resources (`--sort-by` is handled in this PR by falling back to old behavior) - [ ] Filtering: How should we filter Table objects? Separate filter for rows? Filter on jsonpath? We have access to partial object metadata for each table row - not enough to know how to filter pods, for example but we could request that the original object be included along with each Table.Row by adding an `includeObject` param in the client request. #### Resources that do not yet support Table output - [ ] Namespaces - [ ] Services - [ ] Service catalog resources: https://github.com/kubernetes-incubator/service-catalog/blob/master/pkg/apis/servicecatalog/v1beta1/types.go **Release note**: ```release-note NONE ```
Automatic merge from submit-queue (batch tested with PRs 60054, 60202, 60219, 58090, 60275). 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>. Namespace should support table printing @soltysh Part of #58536
Automatic merge from submit-queue (batch tested with PRs 60324, 60269, 59771, 60314, 59941). 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>. Implement a stub server printer for CRDs This wires up TableConvertor to CRDs and puts a basic implementation in place for custom paths. However, since our OpenAPISchema can't store OpenAPI extension fields there is no way to expose the custom column piece that get.go supports today (`x-kubernetes-print-columns`). That piece can be implemented separately and needs discussion. As this is purely exposing the default interface, very low risk. Will add an e2e test that covers this under a registered CRD. @soltysh @sttts @kubernetes/sig-api-machinery-pr-reviews A couple of options for wiring up the actual definition: 1. add a new "extensions" map to spec.validation 1. Downside: won't handle future child nested fields, not the correct schema 2. try to change the OpenAPISchema3 field to support extensions 1. Would require a breaking protobuf change, is also very difficult 2. Could store the entire schema as opaque JSON and then parse on load (might be the right thing anyway) 3. Support this as an annotation in 1.11 - `alpha.customresource.k8s.io/x-kubernetes-print-columns` like the CLI Part of #58536
Hey, where are we with this feature overall? Code Freeze starts today. Are we still tracking this for 1.10, or does the rest of the work move to 1.11? |
@jberkus all client-side changes are merged, except for the last one. Regarding the server-side, I believe @soltysh will address any remaining resources that need a TableConvertor for 1.11. @smarterclayton can you confirm if there is anything left to address on the server-side? |
We need to deliver a few tests to verify this doesn't regress during code
freeze but that's it.
…On Mon, Feb 26, 2018 at 3:16 PM, Juan Vallejo ***@***.***> wrote:
@jberkus <https://github.com/jberkus> all client-side changes are merged,
except for the last one.
sorting and custom columns will be addressed in 1.11.
Regarding the server-side, I believe @soltysh <https://github.com/soltysh>
will address any remaining resources that need a TableConvertor for 1.11.
@smarterclayton <https://github.com/smarterclayton> can you confirm if
there is anything left to address on the server-side?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#58536 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABG_p5DW-Bnh4fUfs6A1UYpdBRJDFtuuks5tYxESgaJpZM4Rk_E2>
.
|
@soltysh can you link the 1.10 test PR in? |
This is #60580 |
@smarterclayton with #60580 merged for the tests and #60712 opened for the carry overs to 1.11, is this 1.10 umbrella read to close now? |
[MILESTONENOTIFIER] Milestone Removed From Issue @juanvallejo @smarterclayton @soltysh Important: This issue was missing labels required for the v1.10 milestone for more than 3 days: kind: Must specify exactly one of |
This is a tracker for the work items to bring server-side printing to beta in 1.10:
Server:
put table API behind feature gateClient:
(?includeObject=Object)
and then doing the sort on nested, as should custom columns.The continuation of this work in 1.11 is in #60712.
The text was updated successfully, but these errors were encountered: