-
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
TEP-0142: Add support for params between Step and StepActions #7332
Conversation
7112cad
to
1bb89d3
Compare
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
1bb89d3
to
d335ab3
Compare
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
/hold /hold wait for #7334 |
d335ab3
to
e9a11c3
Compare
e9a11c3
to
b5c8be7
Compare
/hold cancel |
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
b5c8be7
to
c6958c9
Compare
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
c6958c9
to
45563e4
Compare
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
45563e4
to
916596c
Compare
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
916596c
to
5195129
Compare
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
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! Just some minor comments/questions
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Yongxuanzhang 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 |
Following the previous [PR](tektoncd#7317), which introduced Params to the `StepAction` CRD, this PR integrates `param` usage between `Steps` and `StepActions`. This completes support for params in `StepActions`. This work is part of issue tektoncd#7259.
5195129
to
b0b1c0c
Compare
The following is the coverage report on the affected files.
|
The following is the coverage report on the affected files.
|
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.
🎉
/lgtm
Following the previous PR, which introduced the syntax in
Steps
to provide params toStepAction
, this PR reconcilesparam
usage betweenSteps
andStepActions
. This completes support for params inStepActions
. This work is part of issue #7259.Changes
We how pass objectParam replacements inside a
Task
since theSteps
can provide params toStepActions
. The params passed toStepActions
could be object params and could require objectParam replacements.For example, this is now allowed:
Therefore, we now need to allow passing of objectParams into a
Task
.Submitter Checklist
As the author of this PR, please check off the items in this checklist:
/kind <type>
. Valid types are bug, cleanup, design, documentation, feature, flake, misc, question, tepRelease Notes
/kind feature