First OpemShift project and application example

Create a new project in OpenShift:

oc new-project sample-project
Creating a new application in the existing project:
oc new-app --name=first-app --image=openshift/hello-openshift
Get the pods:
oc get po -o wide
Get the logs of the deployment:
oc logs deployment/first-app