Skip to content

Commit

Permalink
add deploymentLevel property to pipeline step (#919)
Browse files Browse the repository at this point in the history
Signed-off-by: Gerd Oberlechner <[email protected]>
  • Loading branch information
geoberle authored Dec 3, 2024
1 parent d487f52 commit 748afb6
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions tooling/templatize/pkg/pipeline/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 748afb6

Please sign in to comment.