Skip to content

Commit dcddace

Browse files
committedOct 25, 2022
wip: stub structs and logic for a bundle workflow
* resolve a dependency graph * identify the order of execution * create new call path to execute bundles from a workflow (i.e. jobs) Signed-off-by: Carolyn Van Slyck <me@carolynvanslyck.com>
1 parent 76e18c4 commit dcddace

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+2314
-227
lines changed
 

‎cmd/porter/installations.go

+3
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ You can use the show command to create the initial file:
139139
"Force the bundle to be executed when no changes are detected.")
140140
f.BoolVar(&opts.DryRun, "dry-run", false,
141141
"Evaluate if the bundle would be executed based on the changes in the file.")
142+
f.StringVarP(&opts.RawFormat, "output", "o", "plaintext",
143+
"Specify an output format. Allowed values: plaintext, json, yaml")
144+
142145
return &cmd
143146
}
144147

‎docs/content/cli/installations_apply.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ porter installations apply FILE [flags]
3737
--force Force the bundle to be executed when no changes are detected.
3838
-h, --help help for apply
3939
-n, --namespace string Namespace in which the installation is defined. Defaults to the namespace defined in the file.
40+
-o, --output string Specify an output format. Allowed values: plaintext, json, yaml (default "plaintext")
4041
```
4142

4243
### Options inherited from parent commands

0 commit comments

Comments
 (0)