Skip to content

Commit 405e8ed

Browse files
committed
feat: enable step actions api by default
1 parent c6d38c9 commit 405e8ed

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

config/config-feature-flags.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ data:
123123
# Setting this flag to "true" will enable the CEL evaluation in WhenExpression
124124
enable-cel-in-whenexpression: "false"
125125
# Setting this flag to "true" will enable the use of StepActions in Steps
126-
# This feature is in preview mode and not implemented yet. Please check #7259 for updates.
127-
enable-step-actions: "false"
126+
# This feature is in beta and enabled by default.
127+
enable-step-actions: "true"
128128
# Setting this flag to "true" will enable the use of Artifacts in Steps
129129
# This feature is in preview mode and not implemented yet. Please check #7693 for updates.
130130
enable-artifacts: "false"

docs/additional-configs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -401,15 +401,15 @@ Features currently in "beta" are:
401401
| [Isolated `Step` & `Sidecar` `Workspaces`](./workspaces.md#isolated-workspaces) | [TEP-0029](https://github.com/tektoncd/community/blob/main/teps/0029-step-workspaces.md) | [v0.24.0](https://github.com/tektoncd/pipeline/releases/tag/v0.24.0) | [v0.50.0](https://github.com/tektoncd/pipeline/releases/tag/v0.50.0) | |
402402
| [Matrix](./matrix.md) | [TEP-0090](https://github.com/tektoncd/community/blob/main/teps/0090-matrix.md) | [v0.38.0](https://github.com/tektoncd/pipeline/releases/tag/v0.38.0) | [v0.53.0](https://github.com/tektoncd/pipeline/releases/tag/v0.53.0) | |
403403
| [Task-level Resource Requirements](compute-resources.md#task-level-compute-resources-configuration) | [TEP-0104](https://github.com/tektoncd/community/blob/main/teps/0104-tasklevel-resource-requirements.md) | [v0.39.0](https://github.com/tektoncd/pipeline/releases/tag/v0.39.0) | [v0.53.0](https://github.com/tektoncd/pipeline/releases/tag/v0.53.0) | |
404-
| [Reusable Steps via StepActions](./stepactions.md) | [TEP-0142](https://github.com/tektoncd/community/blob/main/teps/0142-enable-step-reusability.md) | [v0.54.0](https://github.com/tektoncd/pipeline/releases/tag/v0.54.0) | `enable-step-actions` |
404+
| [Reusable Steps via StepActions](./stepactions.md) | [TEP-0142](https://github.com/tektoncd/community/blob/main/teps/0142-enable-step-reusability.md) | [v0.54.0](https://github.com/tektoncd/pipeline/releases/tag/v0.54.0) | [v0.63.0](https://github.com/tektoncd/pipeline/releases/tag/v0.63.0) | `enable-step-actions` (enabled by default) |
405405
| [Larger Results via Sidecar Logs](#enabling-larger-results-using-sidecar-logs) | [TEP-0127](https://github.com/tektoncd/community/blob/main/teps/0127-larger-results-via-sidecar-logs.md) | [v0.43.0](https://github.com/tektoncd/pipeline/releases/tag/v0.43.0) | [v0.61.0](https://github.com/tektoncd/pipeline/releases/tag/v0.61.0) | `results-from` |
406406
| [Step and Sidecar Overrides](./taskruns.md#overriding-task-steps-and-sidecars) | [TEP-0094](https://github.com/tektoncd/community/blob/main/teps/0094-specifying-resource-requirements-at-runtime.md) | [v0.34.0](https://github.com/tektoncd/pipeline/releases/tag/v0.34.0) | | [v0.61.0](https://github.com/tektoncd/pipeline/releases/tag/v0.61.0) | |
407407
| [Ignore Task Failure](./pipelines.md#using-the-onerror-field) | [TEP-0050](https://github.com/tektoncd/community/blob/main/teps/0050-ignore-task-failures.md) | [v0.55.0](https://github.com/tektoncd/pipeline/releases/tag/v0.55.0) | [v0.62.0](https://github.com/tektoncd/pipeline/releases/tag/v0.62.0) | N/A |
408408

409409
## Enabling larger results using sidecar logs
410410

411411
**Note**: The maximum size of a Task's results is limited by the container termination message feature of Kubernetes,
412-
as results are passed back to the controller via this mechanism. At present, the limit is per task is 4096 bytes. All
412+
as results are passed back to the controller via this mechanism. At present, the limit is per task is "4096 bytes". All
413413
results produced by the task share this upper limit.
414414

415415
To exceed this limit of 4096 bytes, you can enable larger results using sidecar logs. By enabling this feature, you will

docs/stepactions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ weight: 201
2222

2323
## Overview
2424
> :seedling: **`StepActions` is an [beta](additional-configs.md#beta-features) feature.**
25-
> The `enable-step-actions` feature flag must be set to `"true"` to specify a `StepAction` in a `Step`.
25+
> Step actions are enabled by default. You can disable them by setting the `enable-step-actions` feature flag to `"false"`.
2626
2727
A `StepAction` is the reusable and scriptable unit of work that is performed by a `Step`.
2828

pkg/apis/config/feature_flags.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ var (
156156
DefaultEnableStepActions = PerFeatureFlag{
157157
Name: EnableStepActions,
158158
Stability: BetaAPIFields,
159-
Enabled: DefaultBetaFeatureEnabled,
159+
Enabled: true,
160160
}
161161

162162
// DefaultEnableArtifacts is the default PerFeatureFlag value for EnableArtifacts

pkg/apis/config/feature_flags_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ func TestNewFeatureFlagsFromConfigMap(t *testing.T) {
131131
SetSecurityContext: config.DefaultSetSecurityContext,
132132
Coschedule: config.DefaultCoschedule,
133133
EnableParamEnum: config.DefaultEnableParamEnum.Enabled,
134+
EnableStepActions: true,
134135
DisableInlineSpec: config.DefaultDisableInlineSpec,
135136
},
136137
fileName: "feature-flags-bundles-and-custom-tasks",
@@ -152,6 +153,7 @@ func TestNewFeatureFlagsFromConfigMap(t *testing.T) {
152153
SetSecurityContext: config.DefaultSetSecurityContext,
153154
Coschedule: config.DefaultCoschedule,
154155
EnableParamEnum: config.DefaultEnableParamEnum.Enabled,
156+
EnableStepActions: true,
155157
DisableInlineSpec: config.DefaultDisableInlineSpec,
156158
},
157159
fileName: "feature-flags-beta-api-fields",

0 commit comments

Comments
 (0)