Skip to content

Commit

Permalink
Corrects service creation help message (#5229)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmit committed Nov 17, 2021
1 parent 4947ec6 commit 0a41d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/odo/cli/service/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func NewCmdServiceCreate(name, fullName string) *cobra.Command {
// remove this feature after enabling service create interactive mode for operator backed services
serviceCreateCmd.Flags().StringVar(&o.fromFile, "from-file", "", "Path to the file containing yaml specification to use to start operator backed service")

serviceCreateCmd.Flags().StringArrayVarP(&o.parameters, "parameters", "p", []string{}, "Parameters of the plan where a parameter is expressed as <key>=<value")
serviceCreateCmd.Flags().StringArrayVarP(&o.parameters, "parameters", "p", []string{}, "Parameters to be used to create Operator backed service where a parameter is expressed as <key>=<value")
serviceCreateCmd.Flags().BoolVarP(&o.wait, "wait", "w", false, "Wait until the service is ready")
genericclioptions.AddContextFlag(serviceCreateCmd, &o.componentContext)
return serviceCreateCmd
Expand Down

0 comments on commit 0a41d4d

Please sign in to comment.