373 B
373 B
OpenShift - Projects 101
Objectives
- Login to the OpenShift cluster ->
oc login -u YOUR_USER -p YOUR_PASSWORD_OR_TOKEN
- List all the projects ->
oc get projects
(The output should be empty in a newly created cluster) - Create a new project called 'neverland' ->
oc new-project neverland
- Check the overview status of the current project ->
oc status