Skip to content

Commit

Permalink
clarify that the domain portion of the OpenShift URL will be your own…
Browse files Browse the repository at this point in the history
… domain
  • Loading branch information
sgilda committed May 3, 2012
1 parent 6e911be commit 2e55e33
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion helloworld-mdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ Open a shell command prompt and change to a directory of your choice. Enter the

rhc app create -a hellworldmdb -t jbossas-7

_NOTE_: The domain name for this application will be `helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com`. Here we use the _quickstart_ domain. You will need to replace it with your own OpenShift domain name.

This command creates an OpenShift application with the name you entered above and will run the application inside a `jbossas-7` container. You should see some output similar to the following:

Creating application: helloworldmdb
Expand All @@ -119,7 +121,7 @@ This command creates an OpenShift application with the name you entered above an
git url: ssh://b92047bdc05e46c980cc3501c3577c1e@helloworldmdb-quickstart.rhcloud.com/~/git/helloworldmdb.git/
Successfully created application: helloworldmdb

The create command creates a git repository in the current directory with the same name as the application. Notice that the output also reports the URL at which the application can be accessed. Make sure it is available by typing the published url <http://helloworld-quickstart.rhcloud.com/> into a browser or use command line tools such as curl or wget.
The create command creates a git repository in the current directory with the same name as the application. Notice that the output also reports the URL at which the application can be accessed. Make sure it is available by typing the published url <http://helloworldmdb-quickstart.rhcloud.com/> into a browser or use command line tools such as curl or wget.

### Migrate the Quickstart Source

Expand Down
2 changes: 2 additions & 0 deletions helloworld-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ Open a shell command prompt and change to a directory of your choice. Enter the

rhc app create -a helloworldrs -t jbossas-7

_NOTE_: The domain name for this application will be `helloworldrs-YOUR_DOMAIN_NAME.rhcloud.com`. Here we use the _quickstart_ domain. You will need to replace it with your own OpenShift domain name.

This command creates an OpenShift application called `helloworldrs` and will run the application inside a `jbossas-7` container. You should see some output similar to the following:

Creating application: helloworldrs
Expand Down
2 changes: 2 additions & 0 deletions jax-rs-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ Open a shell command prompt and change to a directory of your choice. Enter the

rhc app create -a helloworldrs -t jbossas-7

_NOTE_: The domain name for this application will be `helloworldrs-YOUR_DOMAIN_NAME.rhcloud.com`. Here we use the _quickstart_ domain. You will need to replace it with your own OpenShift domain name.

This command creates an OpenShift application called `helloworldrs` and will run the application inside a `jbossas-7` container. You should see some output similar to the following:

Creating application: helloworldrs
Expand Down
2 changes: 2 additions & 0 deletions template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ Open a shell command prompt and change to a directory of your choice. Enter the

rhc app create -a OPENSHIFT_QUICKSTART_NAME -t jbossas-7

_NOTE_: The domain name for this application will be OPENSHIFT_QUICKSTART_NAME-YOUR_DOMAIN_NAME.rhcloud.com`. Here we use the _quickstart_ domain. You will need to replace it with your own OpenShift domain name.

This command creates an OpenShift application with the name you entered above and will run the application inside a `jbossas-7` container. You should see some output similar to the following:

Creating application: OPENSHIFT_QUICKSTART_NAME
Expand Down
4 changes: 3 additions & 1 deletion wsat-simple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ Note that we use the `jboss-as-quickstart@jboss.org` user for these examples. Yo

Open up a shell and from the directory of your choice run the following command to create our wsatsimple application.

rhc app create -a wstsimple -t jbossas-7
rhc app create -a wsatsimple -t jbossas-7

_NOTE_: The domain name for this application will be `wsatsimple-YOUR_DOMAIN_NAME.rhcloud.com`. Here we use the _quickstart_ domain. You will need to replace it with your own OpenShift domain name.

You should see some output which will show the application being deployed and also the URL at which it can be accessed. If creation is successful, you should see similar output:

Expand Down

0 comments on commit 2e55e33

Please sign in to comment.