This is an automated email from the ASF dual-hosted git repository.

astefanutti pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new d31cbb9  fix(cli): remove install camel-version flag
d31cbb9 is described below

commit d31cbb9791f164b49c21ee6330cdbed7b0e76e59
Author: Pasquale Congiusti <pasquale.congiu...@gmail.com>
AuthorDate: Mon Jan 18 10:15:54 2021 +0100

    fix(cli): remove install camel-version flag
    
    Fix #1884
---
 pkg/cmd/install.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/pkg/cmd/install.go b/pkg/cmd/install.go
index 9a112aa..b60731f 100644
--- a/pkg/cmd/install.go
+++ b/pkg/cmd/install.go
@@ -78,7 +78,6 @@ func newCmdInstall(rootCmdOptions *RootCmdOptions) 
(*cobra.Command, *installCmdO
        cmd.Flags().Bool("example", false, "Install example integration")
        cmd.Flags().Bool("global", false, "Configure the operator to watch all 
namespaces. No integration platform is created.")
        cmd.Flags().Bool("force", false, "Force replacement of configuration 
resources when already present.")
-
        cmd.Flags().StringP("output", "o", "", "Output format. One of: 
json|yaml")
        cmd.Flags().String("organization", "", "A organization on the Docker 
registry that can be used to publish images")
        cmd.Flags().String("registry", "", "A Docker registry that can be used 
to publish images")
@@ -89,7 +88,6 @@ func newCmdInstall(rootCmdOptions *RootCmdOptions) 
(*cobra.Command, *installCmdO
        cmd.Flags().String("registry-auth-username", "", "The docker registry 
authentication username")
        cmd.Flags().String("registry-auth-password", "", "The docker registry 
authentication password")
        cmd.Flags().StringArrayP("property", "p", nil, "Add a camel property")
-       cmd.Flags().String("camel-version", "", "Set the camel version")
        cmd.Flags().String("runtime-version", "", "Set the camel-k runtime 
version")
        cmd.Flags().String("base-image", "", "Set the base Image used to run 
integrations")
        cmd.Flags().String("operator-image", "", "Set the operator Image used 
for the operator deployment")

Reply via email to