-
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
OpenAPI support for kubectl #44531
OpenAPI support for kubectl #44531
Conversation
3a00572
to
5a06596
Compare
5a06596
to
3df90a2
Compare
1c4ef67
to
bf281e5
Compare
f12943c
to
20e7af1
Compare
@k8s-bot verify test this
|
e758ec4
to
18d9b0b
Compare
@caesarxuchao - plz review the client-go changes |
pkg/kubectl/cmd/util/helpers.go
Outdated
@@ -401,6 +401,11 @@ func AddValidateFlags(cmd *cobra.Command) { | |||
cmd.MarkFlagFilename("schema-cache-dir") | |||
} | |||
|
|||
func AddOpenAPIFlags(cmd *cobra.Command) { | |||
cmd.Flags().String("schema-cache-dir", fmt.Sprintf("~/%s/%s", clientcmd.RecommendedHomeDir, clientcmd.RecommendedSchemaName), fmt.Sprintf("If non-empty, load/store cached API schemas in this directory, default is '$HOME/%s/%s'", clientcmd.RecommendedHomeDir, clientcmd.RecommendedSchemaName)) |
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've seen three reference to schema
, openapi
, and swagger
in code/comments/messages. should we just use one? I suggest openapi
for all of them.
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.
This doesn't introduce a new flag, it is just allows registering the cache dir without registering the validation flags. See 5 lines above this one.
|
||
// isPrimitive returns true if s is a primitive type | ||
func (o *Resources) isPrimitive(s spec.Schema) bool { | ||
return !o.isArray(s) && !o.isMap(s) && !o.isDefinitionReference(s) && len(s.Type) > 0 |
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.
The assumption of a schema is primitive if it does not have a ref
may not be true all the time. I would say a primitive schema is one with no "properties". does that make sense?
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.
Updated the checks to be more explicit.
There is a unit check that test that every definition encountered has exactly 1 of (isPrimitive, isArray, isMap, isDefinitionReference) which should give some confidence that these are working as intended.
} | ||
|
||
// encodeSpec binary encodes the openapi spec | ||
func (c *cachingOpenAPIClient) encodeSpec(parsed *Resources) ([]byte, error) { |
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.
Can't we just encode/decode spec.swagger
?
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.
No. :( As discussed offline, the Ref type which contains the json reference has private fields that are dropped by binary serialization.
Reviewed 3 of 3 files at r1, 19 of 19 files at r2, 6 of 6 files at r3. pkg/kubectl/cmd/testing/fake.go, line 406 at r3 (raw file):
should the swagger stuff be marked deprecated and/or be given a TODO(#issue) to track its removal? pkg/kubectl/cmd/util/factory.go, line 445 at r3 (raw file):
this can be scoped to the 'if' body pkg/kubectl/cmd/util/factory_object_mapping.go, line 442 at r3 (raw file):
pls add note about what (if anything) will make the cache stale, and how it is freshened test coverage for that? pkg/kubectl/cmd/util/helpers.go, line 405 at r3 (raw file):
BTW , go fmt will retain newlines added for readability. pkg/kubectl/cmd/util/openapi/openapi.go, line 30 at r3 (raw file):
Please comment the const. Does the x mean something? could this string be arbitrary, e.g. peach-banana-sandwich? pkg/kubectl/cmd/util/openapi/openapi.go, line 40 at r3 (raw file):
Seems odd to have PeachDefinition instead of just Peach. The doc doesn't help. Went digging in apimachinery/blob/master/pkg/runtime/schema/group_version.go and am even more confused about Kind pkg/kubectl/cmd/util/openapi/openapi.go, line 42 at r3 (raw file):
BTW, this looks like L65, hence earlier request for commentary on Kind. pkg/kubectl/cmd/util/openapi/openapi.go, line 48 at r3 (raw file):
// GroupVersionKind (does this useful thing in the context) of a resource. pkg/kubectl/cmd/util/openapi/openapi.go, line 63 at r3 (raw file):
"defines a Type" and again wondering why not just "Type" and how this differs from "Kind". pkg/kubectl/cmd/util/openapi/openapi.go, line 193 at r3 (raw file):
BTW: Could "ARRAY" show up? pkg/kubectl/cmd/util/openapi/openapi.go, line 196 at r3 (raw file):
isObject? (given s.Type[0] == "object") pkg/kubectl/cmd/util/openapi/openapi.go, line 232 at r3 (raw file):
Comment looks odd given !o.isArray returns error pkg/kubectl/cmd/util/openapi/openapi.go, line 259 at r3 (raw file):
sic (gropuversionkind) More and more want a primer in this doc about Group, Kind, Version, Type, Field Doc under https://github.com/kubernetes/apimachinery/blob/master/pkg/runtime/schema/group_version.go doesn't help pkg/kubectl/cmd/util/openapi/openapi_cache.go, line 48 at r3 (raw file):
using client. People are not picky about sentence formation? pkg/kubectl/cmd/util/openapi/openapi_cache_test.go, line 60 at r3 (raw file):
FYI: make an Equals method for Resources, test it in openapi_test.go, and use it directly here? instead of the expectEqual utility below? pkg/kubectl/cmd/util/openapi/openapi_test.go, line 67 at r3 (raw file):
BTW: nifty framework 👍 tests easy to read staging/src/k8s.io/client-go/discovery/discovery_client.go, line 380 at r3 (raw file):
Comments from Reviewable |
pkg/kubectl/cmd/util/openapi/doc.go
Outdated
package openapi | ||
|
||
// The openapi package is a collection of libraries for fetching the openapi spec | ||
// from a Kubernetes server and then indexing the type definitions. |
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.
if these are meant to be Godoc-compatible comments, they need to go above the package
keyword
18d9b0b
to
4ec6ee0
Compare
Review status: 20 of 28 files reviewed at latest revision, 21 unresolved discussions. pkg/kubectl/cmd/testing/fake.go, line 406 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Added pkg/kubectl/cmd/util/factory.go, line 445 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Done pkg/kubectl/cmd/util/factory_object_mapping.go, line 442 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Updated with a comment. Test coverage for the caching logic is in the openapi_cache_test.go file pkg/kubectl/cmd/util/helpers.go, line 405 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Added some newlines for readability pkg/kubectl/cmd/util/openapi/doc.go, line 20 at r3 (raw file): Previously, arschles (Aaron Schlesinger) wrote…
Done thx. pkg/kubectl/cmd/util/openapi/openapi.go, line 30 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Done pkg/kubectl/cmd/util/openapi/openapi.go, line 40 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Updated to drop the Definition piece. GVK deserves a good doc. pkg/kubectl/cmd/util/openapi/openapi.go, line 42 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Yes it is a bit confusing. Added a comment to clarify pkg/kubectl/cmd/util/openapi/openapi.go, line 48 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Updated the comment pkg/kubectl/cmd/util/openapi/openapi.go, line 63 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Updated the comment. Let me know if this makes more sense. pkg/kubectl/cmd/util/openapi/openapi.go, line 193 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Changed to compare against lowercase. I don't think that this should actually show up, but provides a bit of future proofing. I've changed the matching logic a bit so it should match one of the primitive types "string", "boolean", "integer" or "array", "object", or be empty for definition references. The unit test parses the k8s swagger.json and validates that each definition matches exactly one of primitive, array, map, definitionReference, so we should catch if there is anything that isn't looking correct. pkg/kubectl/cmd/util/openapi/openapi.go, line 196 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Updated with a comment to explain this. Also moved the strings into constants with descriptions. pkg/kubectl/cmd/util/openapi/openapi.go, line 232 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Done pkg/kubectl/cmd/util/openapi/openapi.go, line 259 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
GroupVersionKind is a more general API concept. There is a little bit here. Could probably deserve something more in depth. pkg/kubectl/cmd/util/openapi/openapi_cache.go, line 48 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Sometimes they are :) pkg/kubectl/cmd/util/openapi/openapi_cache_test.go, line 60 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
Thx staging/src/k8s.io/client-go/discovery/discovery_client.go, line 380 at r3 (raw file): Previously, monopole (Jeff Regan) wrote…
:P. Changed the logic after I started caching. Updated the comments to be correct. Comments from Reviewable |
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.
Other LGTM
pkg/kubectl/cmd/util/factory.go
Outdated
@@ -33,6 +33,7 @@ import ( | |||
"github.com/spf13/cobra" | |||
"github.com/spf13/pflag" | |||
|
|||
"github.com/golang/glog" |
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.
nit: This line should be moved into github import group
@@ -28,6 +28,8 @@ import ( | |||
|
|||
"github.com/emicklei/go-restful/swagger" | |||
|
|||
"sync" |
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.
nit: should move this up.
@@ -91,6 +94,11 @@ type SwaggerSchemaInterface interface { | |||
SwaggerSchema(version schema.GroupVersion) (*swagger.ApiDeclaration, error) | |||
} | |||
|
|||
type OpenAPISchemaInterface interface { |
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.
nit: for consistency, could you put a comment for the interface?
// OpenAPISchema fetches the open api schema using a rest client and parses the json. | ||
// Warning: this is very expensive (~1.2s) | ||
func (d *DiscoveryClient) OpenAPISchema() (*spec.Swagger, error) { | ||
data, err := d.restClient.Get().AbsPath("/swagger.json").Do().Raw() |
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.
This comment is off-topic. /swagger.json is not shown as an path when i visit the root of the server. It only shows "/swaggerapi/" which leads me to swagger-1.2. @mbohlool do you think we should fix that?
} | ||
|
||
func TestGetOpenAPISchema(t *testing.T) { | ||
expect := spec.Swagger{} |
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.
Can we add some contents to the spec?
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.
A couple of nits for the changes in staging/client-go.
openAPIGetter openAPIGetter | ||
} | ||
|
||
type openAPIGetter struct { |
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.
please avoid the anonymous inclusion in the struct. It makes the code below harder to read.
}) | ||
|
||
// Delegate to the OpenAPIGetter | ||
return f.openAPIGetter.OpenAPIData() |
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.
This method is on the Getter
I guess?
} | ||
|
||
// Create the caching OpenAPIGetter | ||
f.openAPIGetter.Getter = openapi.NewOpenAPIGetter(cacheDir, versionString, discovery) |
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.
Why does it care about the server version? Why doesn't it use the discovery method and rely on the caching of the discovery client?
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.
Does the discovery client cache the result to disk?
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.
Does the discovery client expose a method to that will give the client stable a hash / key for for exposed API?
Review status: 20 of 28 files reviewed at latest revision, 24 unresolved discussions. pkg/kubectl/cmd/util/openapi/openapi_cache.go, line 48 at r3 (raw file): Previously, pwittrock (Phillip Wittrock) wrote…
OK :) it all /lgtm Comments from Reviewable |
Reviewed 4 of 8 files at r4, 4 of 4 files at r5. Comments from Reviewable |
Review status: 22 of 28 files reviewed at latest revision, 23 unresolved discussions. pkg/kubectl/cmd/util/factory.go, line 36 at r5 (raw file): Previously, mengqiy (Mengqi Yu) wrote…
Done. pkg/kubectl/cmd/util/factory_object_mapping.go, line 64 at r4 (raw file): Previously, deads2k (David Eads) wrote…
Done. pkg/kubectl/cmd/util/factory_object_mapping.go, line 477 at r4 (raw file): Previously, deads2k (David Eads) wrote…
Done. pkg/kubectl/cmd/util/factory_object_mapping.go, line 31 at r5 (raw file): Previously, mengqiy (Mengqi Yu) wrote…
Done. pkg/kubectl/cmd/util/openapi/openapi_cache.go, line 82 at r4 (raw file): Previously, fabianofranz (Fabiano Franz) wrote…
Done. staging/src/k8s.io/client-go/discovery/discovery_client.go, line 97 at r5 (raw file): Previously, caesarxuchao (Chao Xu) wrote…
Done. staging/src/k8s.io/client-go/discovery/discovery_client.go, line 380 at r5 (raw file): Previously, caesarxuchao (Chao Xu) wrote…
ACK staging/src/k8s.io/client-go/discovery/discovery_client_test.go, line 354 at r5 (raw file): Previously, caesarxuchao (Chao Xu) wrote…
Done. Comments from Reviewable |
PTAL |
@k8s-bot gce etcd3 e2e test this |
client-go changes lgtm. |
@caesarxuchao @deads2k Can I get an approval for client-go? |
/approve |
5704b9e
to
21e239f
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, monopole, pwittrock
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Automatic merge from submit-queue |
Support for openapi spec in kubectl.
Includes: