Skip to content

Commit

Permalink
fix: Add max running builds CLI option
Browse files Browse the repository at this point in the history
- Add option to CLI install command to set max running builds setting
  • Loading branch information
christophd committed Apr 26, 2023
1 parent 861f983 commit 5faf8c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ func newCmdInstall(rootCmdOptions *RootCmdOptions) (*cobra.Command, *installCmdO
cmd.Flags().StringArray("operator-resources", nil, "Define the resources requests and limits assigned to the operator Pod as <requestType.requestResource=value> (i.e., limits.memory=256Mi)")
cmd.Flags().StringArray("operator-env-vars", nil, "Add an environment variable to set in the operator Pod(s), as <name=value>")
cmd.Flags().StringP("log-level", "z", "info", "The level of operator logging (default - info): info or 0, debug or 1")
cmd.Flags().Int("max-running-builds", 0, "Maximum number of parallel running builds")

// save
cmd.Flags().Bool("save", false, "Save the install parameters into the default kamel configuration file (kamel-config.yaml)")
Expand Down

0 comments on commit 5faf8c5

Please sign in to comment.