2. First steps

In this lab, we will interact with the OpenShift cluster for the first time.

Projects

A Project is a logical design used in OpenShift to organize and separate your applications, Deployments, Pods, Ingresses, Services, etc. on a top-level basis. Authorized users inside a Project are able to manage those resources. Project names have to be unique in your cluster.

Task 2.2: Create a Project

You would usually create your first Project here using oc new-project. This is, however, not possible on the provided cluster. Instead, a Project named <username>-training-test has been pre-created for you. Use this Project for all labs in this training except for 9.5. ResourceQuotas and LimitRanges.

Task 2.3: Discover the OpenShift web console

Discover the different menu entries in the two views, the Developer and the Administrator view.

Display all existing Pods in the previously created Project with oc (there shouldn’t yet be any):

oc get pod --namespace <namespace>