-
Notifications
You must be signed in to change notification settings - Fork 1.8k
TaskRun, and PipelineRun auto-conversion from v1alpha1 to v1alpha2 🎋 #2025
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
TaskRun, and PipelineRun auto-conversion from v1alpha1 to v1alpha2 🎋 #2025
Conversation
/cc @bobcatfish |
The following is the coverage report on pkg/.
|
7c083dd
to
5c387d0
Compare
The following is the coverage report on pkg/.
|
5c387d0
to
843ac21
Compare
The following is the coverage report on pkg/.
|
|
||
t := &v1alpha1.TaskSpec{ | ||
Steps: []v1alpha1.Step{rcc.Condition.Spec.Check}, | ||
TaskSpec: v1alpha2.TaskSpec{ |
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: in a bunch of other places we're not nesting this on a newline. We're doing t := &v1alpha1.TaskSpec{TaskSpec: v1alpha2.TaskSpec{
)
I really don't mind either way which format is used but figure we should probably be consistent.
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.
Usually I am doing &v1alpha1.TaskSpec{TaskSpec: v1alpha2.TaskSpec{
if TaskSpec
is the only field in the struct, otherwise I aligne them 😅
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbwsg The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
843ac21
to
6a3198b
Compare
The following is the coverage report on pkg/.
|
6a3198b
to
daf5ded
Compare
/hold cancel |
The following is the coverage report on pkg/.
|
This adds auto-conversion methods and tests for TaskRun types in v1alpha1 and v1alpha2. Signed-off-by: Vincent Demeester <[email protected]>
This adds auto-conversion methods and tests for PipelineRun types in v1alpha1 and v1alpha2. Signed-off-by: Vincent Demeester <[email protected]>
daf5ded
to
3e65f90
Compare
The following is the coverage report on pkg/.
|
/lgtm |
/test pull-tekton-pipeline-build-tests |
Changes
This adds
Depends on #2002
/hold
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 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.