This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch release-1.10.x in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit b1550282fb34ba0e5e4bf4c902679afca673b5ca Author: Christoph Deppisch <[email protected]> AuthorDate: Wed Apr 26 22:24:23 2023 +0200 fix: Add max running builds CLI option - Add option to CLI install command to set max running builds setting --- pkg/cmd/install.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cmd/install.go b/pkg/cmd/install.go index ed9f57efa..68a6496f3 100644 --- a/pkg/cmd/install.go +++ b/pkg/cmd/install.go @@ -146,6 +146,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)")
