Skip to content
forked from sclorg/golang-ex

A sample app that is built using the s2i golang builder

Notifications You must be signed in to change notification settings

rolandm/golang-ex

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Hello, OpenShift!

A sample app that is built using the S2I golang builder.

This example will serve an HTTP response of "Hello OpenShift!" written in Golang. It is also intended to be used with an evolving Golang Source-to-Image builder image.

Once the image-stream is loaded into OpenShift, you can easily deploy it by doing:

$ oc new-app --name golang-app golang~https://github.com/rmuller/golang-ex.git

The response message can be set by using the RESPONSE environment variable. You will need to edit the pod definition and add an environment variable to the container definition and run the new pod.

Then you can re-create the pod as with the first example, get the new IP address, and then curl will show your new message:

$ curl 10.1.0.2:8888
 Hello World!

To test from external network, you need to create router. Please refer to Running the router

The container doesn't expose any ports, this will require you to expose it manually. For example:

$ oc expose dc/golang-app --port=8888

and lastly if you want to expose a route, by doing:

$ oc expose service/golang-app

About

A sample app that is built using the s2i golang builder

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%