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

Bringing server-side printing to beta summary #58536

Closed
8 of 16 tasks
smarterclayton opened this issue Jan 19, 2018 · 18 comments
Closed
8 of 16 tasks

Bringing server-side printing to beta summary #58536

smarterclayton opened this issue Jan 19, 2018 · 18 comments
Assignees
Labels
sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. sig/cli Categorizes an issue or PR as relevant to SIG CLI.
Milestone

Comments

@smarterclayton
Copy link
Contributor

smarterclayton commented Jan 19, 2018

This is a tracker for the work items to bring server-side printing to beta in 1.10:

Server:

Client:

  • Have kubectl get fetch table resources and pass them into the printer (with fallback to client side printing if the server doesn't return a Table) (Update get.go to use server-side printing #55637)
  • Have a flag to disable server side rendering that defaults to false
  • Add client side tests that validate server side printing can be bypassed
  • Sorting and printing should be using the table but with full objects returned via the print API (?includeObject=Object) and then doing the sort on nested, as should custom columns.
  • We should also test service-catalog resources with Table printers. I have made a note of this here.

The continuation of this work in 1.11 is in #60712.

@k8s-ci-robot k8s-ci-robot added the needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. label Jan 19, 2018
@smarterclayton smarterclayton added sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. sig/cli Categorizes an issue or PR as relevant to SIG CLI. labels Jan 19, 2018
@k8s-ci-robot k8s-ci-robot removed needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. labels Jan 19, 2018
@smarterclayton
Copy link
Contributor Author

Suggest we split this down the middle - I'll handle server side and Juan you can handle client side

@smarterclayton smarterclayton added this to the v1.10 milestone Jan 19, 2018
@smarterclayton smarterclayton self-assigned this Jan 19, 2018
@juanvallejo
Copy link
Contributor

@smarterclayton

Suggest we split this down the middle - I'll handle server side and Juan you can handle client side

Sounds good to me.
@soltysh fyi

@lavalamp
Copy link
Member

cc @yliaog

@juanvallejo
Copy link
Contributor

Existing prototype PR for item 1 under Client: #55637
Will rebase and add fallback, tests

@smarterclayton
Copy link
Contributor Author

Overlapping #53224

@jberkus
Copy link

jberkus commented Feb 2, 2018

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!

k8s-github-robot pushed a commit that referenced this issue Feb 5, 2018
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.
```
@adohe-zz
Copy link

adohe-zz commented Feb 9, 2018

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

@juanvallejo
Copy link
Contributor

@adohe I currently have client side changes proposed here:#55637 I still need to update to use v1beta1 instead of v1alpha1, but any feedback you have is appreciated

@pwittrock
Copy link
Member

From @jberkus

Hey, the following issue is in SIG-CLI for the 1.10 milestone, but is missing Kind and Priority labels. Can you please add those before Code Slush on Tuesday, or take the issue out of the milestone? Thanks!

@jberkus
Copy link

jberkus commented Feb 17, 2018

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!

k8s-github-robot pushed a commit that referenced this issue Feb 23, 2018
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
k8s-github-robot pushed a commit that referenced this issue Feb 23, 2018
…-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
```
k8s-github-robot pushed a commit that referenced this issue Feb 24, 2018
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
k8s-github-robot pushed a commit that referenced this issue Feb 25, 2018
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
@jberkus
Copy link

jberkus commented Feb 26, 2018

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?

@juanvallejo
Copy link
Contributor

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

@smarterclayton
Copy link
Contributor Author

smarterclayton commented Feb 26, 2018 via email

@smarterclayton
Copy link
Contributor Author

@soltysh can you link the 1.10 test PR in?

@soltysh
Copy link
Contributor

soltysh commented Mar 1, 2018

This is #60580

@tpepper
Copy link
Member

tpepper commented Mar 2, 2018

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

@k8s-github-robot
Copy link

[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 kind/bug, kind/cleanup or kind/feature.
priority: Must specify exactly one of priority/critical-urgent, priority/important-longterm or priority/important-soon.

Help

@k8s-github-robot k8s-github-robot removed this from the v1.10 milestone Mar 6, 2018
@soltysh
Copy link
Contributor

soltysh commented Mar 16, 2018

@tpepper yes, sorry I've updated the initial description of the issue. All the remining bits are moved to #60712.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. sig/cli Categorizes an issue or PR as relevant to SIG CLI.
Projects
None yet
Development

No branches or pull requests

10 participants