-
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
Accept OpenAPI spec instead of JSON Schema for CRD validation #49879
Comments
@mbohlool
Note: Method 1 will trigger an email to the group. You can find the group list here and label list here. |
/sig api-machinery |
Copying my answer from kubernetes/community#708 (comment): Why should we restrict ourselfes to openapi? The openapi spec is a side-product of this validation and I don't want to loose expressivity for validation because openapi hasn't updated to the JSON schema draft 4 yet. Moreover, some day openapi v3 is finalized, we will support v3 and v2 for backward compatibility. Do you suggest that we stay at the common denominator, i.e. to that JSON schema subset supported by v2? In other words, at some point we will have to diverge anyway. Is there anything that stops us from stripping the given spec from unsupported features for consumation by the openapi aggregator? As far as I see all JSON Schema fields are monotonic in the sense that stripping fields makes the spec weaker. That's what we need for easy openapi consumation. |
@mbohlool can you summerize the v3 restrictions regarding JSON Schema draft 4? |
@mbohlool Regarding my comment above: which API guarantees do we have regarding the served OpenAPI spec? Do we have to version that? Or do we expect that every consumer now suddenly support v3 and doesn't fall over the new schema? |
@mbohlool From the OpenAPI v3 specification: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#properties, the only difference between the types that are mentioned in the proposal and the OpenAPI types is the We use an array of strings (instead of a single string) right now but it can be changed. Also, Do you believe there are any further problems with the types that we have now? IMHO it should work with OpenAPI well after these changes. |
There are differences in v2 and v3 spec. Why do we want to say we accept JSON Schema while we really accept the subset that is OpenAPI v3 (and meanwhile till we upgrade kubernetes to OpenAPI v3, OpenAPI v2) defined. I think we better just get OpenAPI spec from user and validate based on that (kubectl is already doing that). We would accept v2 now, when we upgrade kubernetes to accept v3, we would accept v3 instead of v2 in CRDs too (and would have the same level of backward compatibility we will foreseen for the whole kubernetes). |
We have analysed the different specs:
Here is a spread-sheet with the results: https://docs.google.com/spreadsheets/d/1Mkm9L7CXGvRorV0Cr4Vwfu0DH7XRi24YHPiDK1NZWo4/edit?usp=sharing These are the main takeaways:
My conclusion from this:We should go with OpenAPI v3 and for the time being drop everything in the OpenAPI spec that is not in OpenAPI v2. But in the near future – when go-openapi supports v3 completely and we have switched to that version, we will be completely clean and have a real 1:1 mapping. |
Now the technical part of a change from JSON-Schema to OpenAPI v3: Let's assume we want to be OpenAPI v3 compatible in the validation. We also want to be able to upgrade some day, e.g. to v4 as supported by go-openapi. Then we have these choices:
|
Re: technical part of change from JSON-Schema to OpenAPI v3:
|
@deads2k @enisoc @bgrant0607 @brendandburns @mbohlool please comment on the upper two design decisions for CRD validation: A) which JSON Schema subset #49879 (comment) cc @kubernetes/sig-api-machinery-api-reviews |
I would go ahead and create flavors of validation schema (option 4), so that we can easily have a backwards compatible update later on. I'm less opinionated on which standard to use. I would have defaulted to jsonschema, but if that makes for bad conversion problems I'm ok with OpenAPISpecV3. It does seem a bit like the tail wagging the dog though. |
I like option 4. With that option, we can also have
|
Sounds like option 4 is the chosen one. One addition: we do not default the empty fields. But we might migrate some day when V2 is removed. |
@mbohlool Do you think a user should be allowed to provide two schemas i.e. one for |
I would only allow one. |
I agree with @sttts. we should only allow one. Furthermore, I see from your change that you are using (a copy of) Second, I think we should use |
It was decided that we should not allow our types to be dependent on external types. kubernetes/community#708 (comment).
Maybe I am missing something here but both the v3 and v2 specifications say that
|
I meant this definition: https://github.com/go-openapi/spec/blob/f81e0f768713035fe232cd0d44a1c56e4eef1383/swagger.go#L190 Or you can look at it as a |
There was a long discussion in the proposal. For a number of reasons we decided against reusing go-openapi's types. Main argument: we don't control them. I am strongly against changing this.
I also strongly disagree here. We are not defining an OpenAPI type universe here, but define the CRD schema. That it's compatible with OpenAPI is a side-produce (with a lot of value, I don't question that). A Schema is a SchemaProps. If we want to allow references (which I am not against at all), we have to generate the names automatically from the CRD name and type. This is nothing for the user to decide. |
Is it still a non-goal to actually implement OpenAPI generation for CRD right now? If so, I think we should focus on offering the best interface for the goal at hand -- declarative specification of server-side Validate() behavior. For the purpose of specifying server-side validation, it should be enough to support only OpenAPIV3 right now, since it's significantly better than OpenAPIV2 (e.g. On a minor note, I suggest calling the field |
+1 We (I hope @mbohlool volunteers 😃) will do OpenAPI generation as a follow-up, not sure whether in 1.8 though. I am fine with having v2 or dropping it. Some day v4 will be there and then we have the second spec. @nikhita has implemented the additional v2 checks already and the code is pretty simple and no burden for maintenance. So I leave the decision to @mbohlool who stressed the point to have the v2 spec as well. |
My suggestion to have v2 and v3 were mostly relevant if we were going the path of accepting more generic OpenAPI spec. In current form, I would also agree that providing two set of spec would make things more complicated and it is unnecessary (sorry @nikhita that my suggestion make your life harder for this PR). Let's remove v2 and keep
I don't think this would be included in 1.8 (I can always try 😃). It shouldn't be hard to do it if we figure out the aggregation layer updating problem (that should be fixed in 1.8). |
Automatic merge from submit-queue apiextensions: validation for customresources - [x] Add types for validation of CustomResources - [x] Fix conversion-gen: #49747 - [x] Fix defaulter-gen: kubernetes/gengo#61 - [x] Convert to OpenAPI types - [x] Validate CR using go-openapi - [x] Validate CRD Schema - [x] Add integration tests - [x] Fix round trip tests: #51204 - [x] Add custom fuzzer functions - [x] Add custom conversion functions - [x] Fix data race while updating CRD: #50098 - [x] Add feature gate for CustomResourceValidation - [x] Fix protobuf generation Proposal: kubernetes/community#708 Additional discussion: #49879, #50625 **Release note**: ```release-note Add validation for CustomResources via JSON Schema. ``` /cc @sttts @deads2k
I believe this can be closed now. |
Yes, it's OpenAPI v3 now. |
Automatic merge from submit-queue apiextensions: validation for customresources - [x] Add types for validation of CustomResources - [x] Fix conversion-gen: #49747 - [x] Fix defaulter-gen: kubernetes/gengo#61 - [x] Convert to OpenAPI types - [x] Validate CR using go-openapi - [x] Validate CRD Schema - [x] Add integration tests - [x] Fix round trip tests: #51204 - [x] Add custom fuzzer functions - [x] Add custom conversion functions - [x] Fix data race while updating CRD: #50098 - [x] Add feature gate for CustomResourceValidation - [x] Fix protobuf generation Proposal: kubernetes/community#708 Additional discussion: kubernetes/kubernetes#49879, kubernetes/kubernetes#50625 **Release note**: ```release-note Add validation for CustomResources via JSON Schema. ``` /cc @sttts @deads2k Kubernetes-commit: 4457e43e7b789586096bfb564330295cf0438e70
According to this proposal:
https://github.com/kubernetes/community/blob/master/contributors/design-proposals/customresources-validation.md
We accept JSON Schema for validation. Kubectl and other tools we have, uses OpenAPI to validate objects (as well as other custom validations on the server). While The proposal claims that OpenAPI and JSON Schema are compatible, but they are not. OpenAPI's Schema is a subset of JSON Schema (e.g. it does not support multiple values for
type
field). We would be in much better shape if we ask for the OpenAPI spec of the custom resource. In that way, we can just aggregate the Spec with current OpenAPI spec and kubectl and other tools can use that to validate the resource. If we accept a JSON Schema, it would not be possible to convert it to OpenAPI if user provides any incompatible values for that Schema.@nikhita, @sttts @lavalamp
The text was updated successfully, but these errors were encountered: