-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Add CRD OpenAPI validation for Pipeline, PipelineResource, Task #1179
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: sbose78 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed (or fixed any issues), please reply here with What to do if you already signed the CLAIndividual signers
Corporate signers
ℹ️ Googlers: Go here for more info. |
Hi @sbose78. Thanks for your PR. I'm waiting for a tektoncd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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/test-infra repository. |
@googlebot I signed it! |
CLAs look good, thanks! ℹ️ Googlers: Go here for more info. |
@sbose78: Cannot trigger testing until a trusted user reviews the PR and leaves an 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/test-infra repository. |
/ok-to-test |
/test pull-tekton-pipeline-integration-tests |
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.
Thanks for this @sbose78 !
My main question for this change: did you generate these with a tool, or did you create this by hand? If it's with a tool, we should add something to https://github.com/tektoncd/pipeline/blob/master/DEVELOPMENT.md#adding-new-types about how to keep this up to date (and maybe add an issue to the backlog to add some automation to make sure it stays up to date!).
If it's done by hand then I'm a bit hesitant to include this since we'll have to keep updating it as we make changes - and it's not 100% clear to me what we get from this validation that we don't get from our existing validation? (Or maybe we can remove some of it?)
(Also note that in #98 we actually removed open API validation, but maybe we won't run into those same problems anymore?)
Looks like there is a failure in the integration tests:
I0812 08:43:53.705] The Pipeline "list-files-pipeline" is invalid: []: Invalid value: map[string]interface {}{"apiVersion":"tekton.dev/v1alpha1", "kind":"Pipeline", "metadata":map[string]interface {}{"name":"list-files-pipeline", "namespace":"default", "generation":1, "uid":"508aa80b-bcdd-11e9-8fe2-42010a80008d", "annotations":map[string]interface {}{"kubectl.kubernetes.io/last-applied-configuration":"{\"apiVersion\":\"tekton.dev/v1alpha1\",\"kind\":\"Pipeline\",\"metadata\":{\"annotations\":{},\"name\":\"list-files-pipeline\",\"namespace\":\"default\"},\"spec\":{\"params\":[{\"default\":\"abc\",\"name\":\"x\"},{\"default\":\"abc\",\"name\":\"y\"}],\"resources\":[{\"name\":\"source-repo\",\"type\":\"git\"}],\"tasks\":[{\"conditions\":[{\"conditionRef\":\"strings-equal\",\"params\":[{\"name\":\"x\",\"value\":\"${params.x}\"},{\"name\":\"y\",\"value\":\"${params.y}\"}]}],\"name\":\"list-files-1\",\"resources\":{\"inputs\":[{\"name\":\"workspace\",\"resource\":\"source-repo\"}]},\"taskRef\":{\"name\":\"list-files\"}}]}}\n"}, "creationTimestamp":"2019-08-12T08:43:53Z"}, "spec":map[string]interface {}{"params":[]interface {}{map[string]interface {}{"name":"x", "type":"string", "default":"abc"}, map[string]interface {}{"default":"abc", "name":"y", "type":"string"}}, "resources":[]interface {}{map[string]interface {}{"type":"git", "name":"source-repo"}}, "tasks":[]interface {}{map[string]interface {}{"conditions":[]interface {}{map[string]interface {}{"params":[]interface {}{map[string]interface {}{"name":"x", "value":"${params.x}"}, map[string]interface {}{"name":"y", "value":"${params.y}"}}, "conditionRef":"strings-equal"}}, "name":"list-files-1", "resources":map[string]interface {}{"inputs":[]interface {}{map[string]interface {}{"name":"workspace", "resource":"source-repo"}}}, "taskRef":map[string]interface {}{"name":"list-files"}}}}}: validation failure list:
I0812 08:43:53.705] spec.tasks.conditions.params.value in body must be of type object: "string"
Since params can be either array type or string type, maybe OpenAPI validation can't handle that kind of syntax?
Thank you @bobcatfish for your thoughts on this proposal:
yes, using the kubegen openapi generator via operator-sdk .
Yes, that scenario did need some manual fixing. I feel irrespective of whether generators can do a 100% good job - we should use some openapi validation in the CRD because
|
For attributes of |
Thanks for the detailed explanation @sbose78 ! I'm on board with this if you could also include in this PR a doc that explains how to update these (basically the description you already gave above) - probably https://github.com/tektoncd/pipeline/blob/master/DEVELOPMENT.md#adding-new-types would be a good place for it. Also I think we should:
|
I am also onboard with this but I really wish we could tool a bit of it 👼 |
Sounds good, will do! |
Quick ping: @sbose78 is this something you want to keep working on? (no worries if not!) |
I will clean this up later this week, sorry this had gone off my radar. If anyone wishes to take a look at it in the meantime, I'm good as well. |
Closing in favor of #1776 /close |
@vdemeester: Closed this PR. 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/test-infra repository. |
Changes
Generated the OpenAPI validation schema for the
Submitter Checklist
These are the criteria that every PR should meet, please check them off as you
review them:
See the contribution guide for more details.
Double check this list of stuff that's easy to miss:
cmd
dir, please updatethe release Task and TaskRun to build and release this image
Reviewer Notes
If API changes
are included, additive changes
must be approved by at least two OWNERS
and backwards incompatible changes
must be approved by more than 50% of the OWNERS,
and they must first be added
in a backwards compatible way.
Release Notes