--- title: Projects --- ## Creating a Project Project resources may only be created on the management cluster. See below for [creating namespaces under projects in a managed cluster](#creating-a-namespace-in-a-project). ### Creating a Basic Project ```bash kubectl create -f - <:`. ## Deleting a Project Look up the project to delete in the cluster namespace since it generated using `metadata.generateName`: ```bash kubectl --namespace c-m-abcde get projects ``` Delete the project under the cluster namespace: ```bash kubectl --namespace c-m-abcde delete project p-vwxyz ```