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

Edits to Deploying an application using odo Section of README #2226

Merged
merged 1 commit into from
Oct 2, 2019
Merged
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
6 changes: 3 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,16 @@ https://asciinema.org/a/225717[image:https://asciinema.org/a/225717.svg[asciicas
After installing `odo`, follow these steps to build, push, and
deploy a Node.js application. Examples for other supported languages and runtimes can be found link:https://github.com/openshift/odo/blob/master/docs/examples.adoc[here].

These steps recommend using link:https://github.com/minishift/minishift[Minishift] for running a OpenShift 3.x or link:https://github.com/code-ready/crc[CodeReady Containers] for a OpenShift 4.x cluster.
These steps recommend using link:https://github.com/minishift/minishift[Minishift] for running an OpenShift 3.x cluster or link:https://github.com/code-ready/crc[CodeReady Containers] for an OpenShift 4.x cluster.

More information on how to install and use `Minishift` can be found link:https://docs.okd.io/latest/minishift/getting-started/index.html[here], for `CodeReady Containers` it can be found link:https://code-ready.github.io/crc/[here].
More information on how to install and use `Minishift` can be found link:https://docs.okd.io/latest/minishift/getting-started/index.html[here]. For `CodeReady Containers`, information can be found link:https://code-ready.github.io/crc/[here].

. Start a local OpenShift development cluster by using `minishift` or `crc`.
+
[source,bash]
----
$ minishift start
$ # or
# or
Copy link
Contributor Author

@danielhelfand danielhelfand Oct 2, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed $ since this is a comment, not a command to execute.

$ crc start
----
. Log into the OpenShift cluster.
Expand Down