Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 722 Bytes

Getting-Started.md

File metadata and controls

25 lines (19 loc) · 722 Bytes

#Getting Started

##Requirements

  • OpenShift Client (oc)
  • The deployment location must be within Red Hat Network.

Create or set your current project.

oc new-project ninja-board-golum-experiment # or
oc project ninja-board-golum-experiment

##Deploying on OpenShift

oc process -f .openshift/templates/ninja-board-back-end.yaml -o yaml | oc apply -f -
oc process -f .openshift/templates/ninja-board-front-end.yaml -p API_URL=http://$(oc get route ninja-board-back-end -o jsonpath='{.spec.host}') -o yaml | oc apply -f -

Open Front End URL within your browser of choice.

To obtain this url:

oc get route ninja-board-front-end -o jsonpath='{.spec.host}'