diff --git a/config/config-feature-flags.yaml b/config/config-feature-flags.yaml index 398f37d1880..3b1a582e83c 100644 --- a/config/config-feature-flags.yaml +++ b/config/config-feature-flags.yaml @@ -118,8 +118,9 @@ data: # Not all Kubernetes implementations support this option. set-security-context: "false" # Setting this flag to "true" will keep pod on cancellation - # allowing examination of the logs on the pods from cancelled taskruns - keep-pod-on-cancel: "false" + # Allowing examination of the logs on the pods from cancelled taskruns + # To disable populating this field, set this flag to `"false"` + keep-pod-on-cancel: "true" # Setting this flag to "true" will enable the CEL evaluation in WhenExpression enable-cel-in-whenexpression: "false" # Setting this flag to "true" will enable the use of StepActions in Steps diff --git a/pkg/apis/config/feature_flags.go b/pkg/apis/config/feature_flags.go index d0db62052cf..6e5b6a8c9a5 100644 --- a/pkg/apis/config/feature_flags.go +++ b/pkg/apis/config/feature_flags.go @@ -142,7 +142,7 @@ var ( DefaultEnableKeepPodOnCancel = PerFeatureFlag{ Name: KeepPodOnCancel, Stability: AlphaAPIFields, - Enabled: DefaultAlphaFeatureEnabled, + Enabled: DefaultBetaFeatureEnabled, } // DefaultEnableCELInWhenExpression is the default PerFeatureFlag value for EnableCELInWhenExpression