-
Notifications
You must be signed in to change notification settings - Fork 219
OpenAPI V3 references parsed as *proto.Arbitrary instead of *proto.Ref #477
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
Comments
A quick glance at the closed PRs, it looks like this PR introduced the wrapped refs: #298. The reason for wrapping the refs is explained here: kubernetes/kubernetes#106387 (comment).
Aka we wouldn't be able to have description with a |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close not-planned |
@k8s-triage-robot: Closing this issue, marking it as "Not Planned". In response to this:
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-sigs/prow repository. |
The issue
I'm using proto.NewOpenAPIV3Data() to parse an OpenAPI V3 spec coming from the
/openapi/v3
endpoints of the apiserver.I'd expect fields such as
.metadata.ownerReferences
to be a *proto.Ref that refers to theio.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference
schema, however they are instead returned as *proto.Arbitrary.I'm not sure if this is the intended behavior, but I believe it should return a
*proto.Ref
.Investigation
I observed a difference between the testdata for pkg/util/proto and the actual spec returned by
/openapi/v3
.ownerReferences field from testdata
The
$ref
is directly underitems
.ownerReferences field from k3s 1.30.0 (and 1.28.6)
The
$ref
is under anallOf
, underitems
.Going further, this document is being parsed by gnostic's openapi_v3.ParseDocument. This results in the following different result (marshaled to JSON):
from testdata
items
->schema_or_reference
->oneof
->reference
-> the reffrom k3s 1.30.0
items
->schema_or_reference
->oneof
->allof
->oneof
->reference
-> the refLooking at the code, the first case is handled correctly. The calls are: proto.ParseSchemaV3 -> proto.parseV3Array -> proto.ParseV3SchemaOrReference -> proto.ParseV3SchemaReference -> returns a Ref.
The second case fails to parse as a ref properly because once it finds the
Oneof
which has type schema, so proto.ParseSchemaV3 is called. That function expects atype
field to be defined, but since there isn't one, it defaults to returning an arbitrary.Solution
From the looks of it, it seems like
proto.ParseSchemaV3
should first check if there's an AllOf, before checking if there's a type. I have a small proof of concept that makes it work for my use case, though I'm not knowledgeable enough on the OpenAPI spec side to know whether that's a bullet proof fix.Reproducing
I created a repo for easily reproducing this issue: https://github.com/tomleb/kube-openapi-issue/blob/master/main_test.go. Simply run
go test -v ./...
. I included a OpenAPI V3 spec from v1.30.0, v1.28.6 and from this repo's testdata.I'd appreciate some guidance on whether this is a truly a bug (as opposed to say, misuse of the library?) and thoughts on the fix proposed above. I'd be willing to work on the fix and contribute to the repo once that's confirmed.
The text was updated successfully, but these errors were encountered: