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

43 lines
1.4 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
[role="_abstract"]
Create a new project to contain all required resources and application components for the tutorial.
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.
[IMPORTANT]
====
If you are using Developer Sandbox to complete this tutorial, skip this procedure. A project has already been created for you.
====
.Prerequisites
* You have logged in to the {oc-first}.
.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".
...
----