Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in odo remove binding #6449

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/odo/cli/add/binding/binding.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func NewCmdBinding(name, fullName string) *cobra.Command {
return genericclioptions.GenericRun(o, cmd, args)
},
}
bindingCmd.Flags().String(backend.FLAG_NAME, "", "Name of the Binding to create")
bindingCmd.Flags().String(backend.FLAG_NAME, "", "Name of the Binding to add")
bindingCmd.Flags().String(backend.FLAG_WORKLOAD, "", "Name of the workload to bind, only when no devfile is present in current directory")
bindingCmd.Flags().String(backend.FLAG_SERVICE, "", "Name of the service to bind")
bindingCmd.Flags().String(backend.FLAG_SERVICE_NAMESPACE, "", "Namespace of the service to bind to. Default is the component namespace.")
Expand Down
2 changes: 1 addition & 1 deletion pkg/odo/cli/remove/binding/binding.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func NewCmdBinding(name, fullName string) *cobra.Command {
return genericclioptions.GenericRun(o, cmd, args)
},
}
bindingCmd.Flags().String(backend.FLAG_NAME, "", "Name of the Binding to create")
bindingCmd.Flags().String(backend.FLAG_NAME, "", "Name of the Binding to remove")
clientset.Add(bindingCmd, clientset.BINDING, clientset.FILESYSTEM)

return bindingCmd
Expand Down