OpenShift Basics - Living Post
Draft!!
Though I am fairly experienced at Kubernetes I am new to OpenShift. The purpose of this post is to keep track of all the little hits and tips i pick up. In short if I have to google how to do something I will add it to this list. Some of these will appear very very obvious.
Creating a project in OpenShift
- Ensure you are logged in as the correct user
oc create namespace <project name>
orkubectl create namespace <project name>
oc projects
to check the project as createdoc project <project name>
to switch the scope to that project`