-
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-0058: Graceful Termination - Promotions and Deprecation #4611
Comments
In [TEP-0058: Graceful Termination][tep-0058], we deprecated `PipelineRunCancelled` and added: - `StoppedRunFinally` - To "stop" (i.e. let the tasks complete, then execute finally tasks) a Pipeline - `CancelledRunFinally` - To "cancel" (i.e. interrupt any executing non finally tasks, then execute finally tasks) - `Cancelled` - Same as today's `PipelineRunCancelled` - i.e. interrupt any executing tasks without running finally tasks The above was released in [v0.25][25] in June 2021. This change adds the deprecated field - `PipelineRunCancelled` - to the deprecation table. Issue: tektoncd#4611 [tep-0058]: https://github.com/tektoncd/community/blob/main/teps/0058-graceful-pipeline-run-termination.md) [25]: https://github.com/tektoncd/pipeline/releases/tag/v0.25.0
In [TEP-0058: Graceful Termination][tep-0058], we deprecated `PipelineRunCancelled` and added: - `StoppedRunFinally` - To "stop" (i.e. let the tasks complete, then execute finally tasks) a Pipeline - `CancelledRunFinally` - To "cancel" (i.e. interrupt any executing non finally tasks, then execute finally tasks) - `Cancelled` - Same as today's `PipelineRunCancelled` - i.e. interrupt any executing tasks without running finally tasks The above was released in [v0.25][v25] in June 2021. This change adds the deprecated field - `PipelineRunCancelled` - to the deprecation table. Issue: tektoncd#4611 [tep-0058]: https://github.com/tektoncd/community/blob/main/teps/0058-graceful-pipeline-run-termination.md) [v25]: https://github.com/tektoncd/pipeline/releases/tag/v0.25.0
In [TEP-0058: Graceful Termination][tep-0058], we deprecated `PipelineRunCancelled` and added: - `StoppedRunFinally` - To "stop" (i.e. let the tasks complete, then execute finally tasks) a Pipeline - `CancelledRunFinally` - To "cancel" (i.e. interrupt any executing non finally tasks, then execute finally tasks) - `Cancelled` - Same as today's `PipelineRunCancelled` - i.e. interrupt any executing tasks without running finally tasks The above was released in [v0.25][v25] in June 2021. This change adds the deprecated field - `PipelineRunCancelled` - to the deprecation table. Issue: tektoncd#4611 [tep-0058]: https://github.com/tektoncd/community/blob/main/teps/0058-graceful-pipeline-run-termination.md [v25]: https://github.com/tektoncd/pipeline/releases/tag/v0.25.0
@tektoncd/core-maintainers thoughts on promoting the new fields for graceful termination to beta? they were released in v0.25 so they've been in use for 8 months so far |
yup definitely 👍 |
In [TEP-0058: Graceful Termination][tep-0058], we deprecated `PipelineRunCancelled` and added: - `StoppedRunFinally` - To "stop" (i.e. let the tasks complete, then execute finally tasks) a Pipeline - `CancelledRunFinally` - To "cancel" (i.e. interrupt any executing non finally tasks, then execute finally tasks) - `Cancelled` - Same as today's `PipelineRunCancelled` - i.e. interrupt any executing tasks without running finally tasks The above was released in [v0.25][v25] in June 2021. This change adds the deprecated field - `PipelineRunCancelled` - to the deprecation table. Issue: #4611 [tep-0058]: https://github.com/tektoncd/community/blob/main/teps/0058-graceful-pipeline-run-termination.md [v25]: https://github.com/tektoncd/pipeline/releases/tag/v0.25.0
thank you @vinamra28 for volunteering to help us with this 😀 /assign @vinamra28 |
@jerop: GitHub didn't allow me to assign the following users: vinamra28. Note that only tektoncd members, repo collaborators and people who have commented on this issue/PR can be assigned. Additionally, issues/PRs can only have 10 assignees at the same time. 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. |
/assign |
@jerop @pritidesai I guess removal of
Any thoughts? |
created an issue in CLI to track this |
/reopen I think we still need to remove PipelineRunCancelledDeprecated |
@lbernick: Reopened this issue. 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. |
/assign I'll be doing this once #5005 is merged, since it'll be simpler once |
Fixes tektoncd#4611. We deprecated the original cancelled status (with the value `PipelineRunCancelled`) in tektoncd#3915, and we're now at the time for it to be removed in favor of the value `Cancelled`. Signed-off-by: Andrew Bayer <andrew.bayer@gmail.com>
Fixes tektoncd#4611. We deprecated the original cancelled status (with the value `PipelineRunCancelled`) in tektoncd#3915, and we're now at the time for it to be removed in favor of the value `Cancelled`. Signed-off-by: Andrew Bayer <andrew.bayer@gmail.com>
In TEP-0058: Graceful Termination, we deprecated
PipelineRunCancelled
and added:StoppedRunFinally
- To "stop" (i.e. let the tasks complete, then execute finally tasks) a PipelineCancelledRunFinally
- To "cancel" (i.e. interrupt any executing non finally tasks, then execute finally tasks)Cancelled
- Same as today'sPipelineRunCancelled
- i.e. interrupt any executing tasks without running finally tasksThe above was released in v0.25 in June 2021.
The new fields are still in alpha, so this issue tracks promoting them to beta. This issue also tracks deprecation and removal of
PipelineRunCancelled
.The text was updated successfully, but these errors were encountered: