You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().StringArray("annotation", nil, "Add an annotation to the Pipe. E.g. \"--annotation my.company=hello\"")
66
66
cmd.Flags().Bool("force", false, "Force creation of Pipe regardless of potential misconfiguration.")
67
67
cmd.Flags().String("service-account", "", "The SA to use to run this binding")
68
+
cmd.Flags().StringArrayP("dependency", "d", nil, `A dependency that should be included, e.g., "camel:mail" for a Camel component, "mvn:org.my:app:1.0" for a Maven dependency`)
cmd.Flags().String("name", "", "The integration name")
85
85
cmd.Flags().String("image", "", "An image built externally (ie, via CICD). Enabling it will skip the Integration build phase.")
86
-
cmd.Flags().StringArrayP("dependency", "d", nil, `A dependency that should be included, e.g., "-d camel:mail" for a Camel component, "-d mvn:org.my:app:1.0" for a Maven dependency`)
86
+
cmd.Flags().StringArrayP("dependency", "d", nil, `A dependency that should be included, e.g., "camel:mail" for a Camel component, "mvn:org.my:app:1.0" for a Maven dependency`)
87
87
cmd.Flags().BoolP("wait", "w", false, "Wait for the integration to be running")
88
88
cmd.Flags().StringP("kit", "k", "", "The kit used to run the integration")
89
89
cmd.Flags().StringArrayP("property", "p", nil, "Add a runtime property or a local properties file from a path "+
0 commit comments