1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/modules/getting-started-cli-creating-new-project.adoc

36 lines
1.2 KiB
Plaintext

// Module included in the following assemblies:
//
// * tutorials/dev-app-cli.adoc
:_mod-docs-content-type: PROCEDURE
[id="getting-started-cli-creating-new-project_{context}"]
= Creating a project
A _project_ enables a community of users to organize and manage their content in isolation. Projects are {product-title} extensions to Kubernetes namespaces. Projects have additional features that enable user self-provisioning. Each project has its own set of objects, policies, constraints, and service accounts.
Cluster administrators can allow developers to create their own projects. In most cases, you automatically have access to your own projects. Administrators can grant access to other projects as needed.
This procedure creates a new project called `user-getting-started`. You will use this project throughout the rest of this tutorial.
.Prerequisites
* You have access to an {product-title} cluster.
* You have installed the OpenShift CLI (`oc`).
.Procedure
* Create a project by running the following command:
+
[source,terminal]
----
$ oc new-project user-getting-started
----
+
.Example output
[source,terminal]
----
Now using project "user-getting-started" on server "https://openshift.example.com:6443".
...
----