$ oc new-project <project_name> \ --description="<description>" --display-name="<display_name>"
A project allows a community of users to organize and manage their content in isolation from other communities.
Projects starting with |
If allowed by your cluster administrator, you can create a new project.
Projects starting with |
Navigate to Home → Projects.
Click Create Project.
Enter your project details.
Click Create.
If allowed by your cluster administrator, you can create a new project.
Projects starting with |
Run:
$ oc new-project <project_name> \ --description="<description>" --display-name="<display_name>"
For example:
$ oc new-project hello-openshift \ --description="This is an example project" \ --display-name="Hello OpenShift"
The number of projects you are allowed to create may be limited by the system administrator. After your limit is reached, you might have to delete an existing project in order to create a new one. |
Navigate to Home → Projects.
Select a project to view.
On this page, click the Resources button to see workloads in the project and click the Dashboard button to see metrics and details about the project.
When viewing projects, you are restricted to seeing only the projects you have access to view based on the authorization policy.
To view a list of projects, run:
$ oc get projects
You can change from the current project to a different project for CLI operations. The specified project is then used in all subsequent operations that manipulate project-scoped content:
$ oc project <project_name>
Navigate to Home → Projects.
Select a project.
In the upper right-hand corner of the Project Status menu, click Add, then choose from the provided options.
Navigate to Home → Projects.
Select a project to see its status.
Run:
$ oc status
This command provides a high-level overview of the current project, with its components and their relationships.
Navigate to Home → Projects.
Locate the project that you want to delete from the list of projects.
On the far right side of the project listing, select Delete Project from the menu. If you do not have permissions to delete the project, the Delete Project option is grayed out and the option is not clickable.
When you delete a project, the server updates the project status to Terminating from Active. Then, the server clears all content from a project that is in the Terminating state before finally removing the project. While a project is in Terminating status, you cannot add new content to the project. Projects can be deleted from the CLI or the web console.
Run:
$ oc delete project <project_name>