From 62866e19d819856d856bad05c0331e85dcb2fa32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 May 2022 17:15:23 +0800 Subject: [PATCH] Fix: unknown field ignoreTerraformComponent (#4027) Signed-off-by: barnettZQG (cherry picked from commit 0c27fe81991c2109997d02fe6811d21dba3eecfe) Co-authored-by: barnettZQG --- pkg/workflow/step/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/workflow/step/types.go b/pkg/workflow/step/types.go index 545c64377..433e02d01 100644 --- a/pkg/workflow/step/types.go +++ b/pkg/workflow/step/types.go @@ -29,4 +29,6 @@ type DeployWorkflowStepSpec struct { Policies []string `json:"policies,omitempty"` // Parallelism allows setting parallelism for the component deploy process Parallelism *int `json:"parallelism,omitempty"` + // IgnoreTerraformComponent default is true, true means this step will apply the components without the terraform workload. + IgnoreTerraformComponent *bool `json:"ignoreTerraformComponent,omitempty"` }