From 748afb69de0644da0c060b75734c966331cde89e Mon Sep 17 00:00:00 2001 From: Gerd Oberlechner Date: Tue, 3 Dec 2024 15:04:12 +0100 Subject: [PATCH] add deploymentLevel property to pipeline step (#919) Signed-off-by: Gerd Oberlechner --- tooling/templatize/pkg/pipeline/types.go | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/tooling/templatize/pkg/pipeline/types.go b/tooling/templatize/pkg/pipeline/types.go index ec66d83bf..0a6768bf5 100644 --- a/tooling/templatize/pkg/pipeline/types.go +++ b/tooling/templatize/pkg/pipeline/types.go @@ -21,16 +21,17 @@ type ResourceGroup struct { type outPutHandler func(string) type Step struct { - Name string `yaml:"name"` - Action string `yaml:"action"` - Command []string `yaml:"command,omitempty"` - Env []EnvVar `yaml:"env,omitempty"` - Template string `yaml:"template,omitempty"` - Parameters string `yaml:"parameters,omitempty"` - DependsOn []string `yaml:"dependsOn,omitempty"` - DryRun DryRun `yaml:"dryRun,omitempty"` - Inputs []Input `yaml:"inputs,omitempty"` - outputFunc outPutHandler + Name string `yaml:"name"` + Action string `yaml:"action"` + Command []string `yaml:"command,omitempty"` + Env []EnvVar `yaml:"env,omitempty"` + Template string `yaml:"template,omitempty"` + Parameters string `yaml:"parameters,omitempty"` + DependsOn []string `yaml:"dependsOn,omitempty"` + DryRun DryRun `yaml:"dryRun,omitempty"` + Inputs []Input `yaml:"inputs,omitempty"` + DeploymentLevel string `yaml:"deploymentLevel,omitempty"` + outputFunc outPutHandler } type DryRun struct {