From 06b947bb14c511dbf9fcfcee411242d7d91d84c3 Mon Sep 17 00:00:00 2001 From: youngLiuHY Date: Mon, 13 Oct 2025 14:39:55 +0800 Subject: [PATCH] feat: RolloutStepState add RolloutStepSkipped --- rollout/v1alpha1/rollout_types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rollout/v1alpha1/rollout_types.go b/rollout/v1alpha1/rollout_types.go index 1edb1ac..db11463 100644 --- a/rollout/v1alpha1/rollout_types.go +++ b/rollout/v1alpha1/rollout_types.go @@ -237,4 +237,7 @@ const ( // In Canary strategy, it occurs after the user confirms (Paused). // In Batch strategy, it occurs before the PreBatchStepHook. RolloutStepResourceRecycling RolloutStepState = "ResourceRecycling" + + // RolloutStepSkipped indicates that the step is skipped. + RolloutStepSkipped RolloutStepState = "Skipped" )