Skip to content

Exercise 0 - Projects

First of all everyone needs his own OpenShift Project, so let's create one.

Note

For each exercise you can choose and only have to do either the 'Web Console' or the 'Command Line Interface (CLI)' section in oder to complete the exercise.

Create a Project

  1. Switch to the 'Administartor' view using the dropdown menu at .
  2. Navigate to 'Home' → 'Projects' .
  3. Press 'Create Project' .
  4. Set the 'Name' to playground-user<id> (replace <id> with your actual ID) and choose a 'Display Name' as well as a 'Description' (write down your 'Project Name' you will need that in the following Exercises).
  5. Press 'Create' .
  1. Create your own 'Project' using the oc new-project command and write down your 'Project Name' you will need that in the following Exercises.
    oc new-project playground-user<id>
    
    (replace <id> with your actual ID)
  2. Switch to your 'Project' using oc project.
    oc project <project name>