Skip to content

Commit

Permalink
Remove references to OpenShift cluster (#2861)
Browse files Browse the repository at this point in the history
Signed-off-by: John Collier <John.J.Collier@ibm.com>
  • Loading branch information
johnmcollier authored Apr 15, 2020
1 parent 11e04b6 commit 77681be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/odo/cli/url/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const createRecommendedCommandName = "create"
var (
urlCreateShortDesc = `Create a URL for a component`
urlCreateLongDesc = ktemplates.LongDesc(`Create a URL for a component.
The created URL can be used to access the specified component from outside the OpenShift cluster.
The created URL can be used to access the specified component from outside the cluster.
`)
urlCreateExample = ktemplates.Examples(` # Create a URL with a specific name by automatically detecting the port used by the component
%[1]s example
Expand Down Expand Up @@ -220,7 +220,7 @@ func (o *URLCreateOptions) Run() (err error) {
return errors.Wrap(err, "failed to push changes")
}
} else {
log.Italic("\nTo create URL on the OpenShift Cluster, please use `odo push`")
log.Italic("\nTo create the URL on the cluster, please use `odo push`")
}

return
Expand Down
4 changes: 2 additions & 2 deletions pkg/odo/cli/url/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (o *URLDeleteOptions) Run() (err error) {
return err
}
log.Successf("URL %s removed from the env file", o.urlName)
log.Italic("\nTo delete URL on the OpenShift Cluster, please use `odo push`")
log.Italic("\nTo delete the URL on the cluster, please use `odo push`")
} else {
err = o.LocalConfigInfo.DeleteURL(o.urlName)
if err != nil {
Expand All @@ -128,7 +128,7 @@ func (o *URLDeleteOptions) Run() (err error) {
return errors.Wrap(err, "failed to push changes")
}
} else {
log.Italic("\nTo delete URL on the OpenShift Cluster, please use `odo push`")
log.Italic("\nTo delete the URL on the cluster, please use `odo push`")
}
}
} else {
Expand Down

0 comments on commit 77681be

Please sign in to comment.