Go to file
Ben Parees aa4fad5ce0 Merge pull request #11 from ewolinetz/update_templates
Updating front end route variable name and default value
2015-06-16 13:20:55 -04:00
openshift/templates Updating front end route variable name and default value 2015-06-16 11:47:55 -05:00
.gitignore Added ignores 2014-05-16 00:42:27 +01:00
README.md Fix youtube link to start at right place 2015-06-04 09:45:52 -04:00
package.json Update package.json 2015-06-04 13:43:05 -04:00
server.js Switch to use express.js and update packging info 2015-06-04 10:16:04 -04:00

README.md

Node.js sample app on OpenShift!

This example will serve an http response of various "machine" stats from the "machine" the Node.js app is running on to http://host:8080.

OpenShift setup

One possible option is to use the Docker all-in-one launch as described in the origins project.

The project

If you don't have a project setup all ready, go ahead and take care of that

    $ osc new-project nodejs-echo --display-name="nodejs" --description="Sample Node.js app"

That's it, project has been created. Though it would probably be good to set your current project to this (thought new-project does it automatically as well), such as:

    $ osc project nodejs

The app

Now let's pull in the app source code from GitHub repo (fork if you like)

create

    $ osc new-app https://github.com/openshift/nodejs-ex

That should be it, new-app will take care of creating the right build configuration, deployment configuration and service definition. Next you'll be able to kick off the build.

Note, you can follow along with the web console (located at https://ip-address:8443/console) to see what new resources have been created and watch the progress of the build and deployment.

build

    $ osc start-build nodejs --follow

You can alternatively leave off --follow and use osc build-logs nodejs-n where n is the number of the build (output of start-build).

deploy

happens automatically, to monitor its status either watch the web console or osc get pods to see when the pod is up. Another helpful command is

    $ osc status

This will help indicate what IP address the service is running, the default port for it to deploy at is 8080.

enjoy

Run/test our app by simply doing an HTTP GET request

    $ curl ip-address:8080

update

Assuming you used the URL of your own forked report, we can easily push changes to that hosted repo and simply repeat the steps above to build (this is obviously just demonstrating the manually kicking off of builds) which will trigger the new built image to be deployed.

Web UI

To run this example from the Web UI, you can same steps following done on the CLI as defined above by The project. Here's a video showing it in motion:

OpenShift 3: Node.js Sample