POST /apis/project.openshift.io/v1/projects HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json'
{
  "kind": "Project",
  "apiVersion": "project.openshift.io/v1",
  ...
}
Projects are the unit of isolation and collaboration in OpenShift. A project has one or more members, a quota on the resources that the project may consume, and the security controls on the resources in the project. Within a project, members may have different roles - project administrators can set membership, editors can create and manage the resources, and viewers can see but not access running containers. In a normal cluster project administrators are not able to alter their quotas - that is restricted to cluster administrators.
Listing or watching projects will return only projects the user has the reader role on.
An OpenShift project is an alternative representation of a Kubernetes namespace. Projects are exposed as editable to end users while namespaces are not. Direct creation of a project is typically restricted to administrators, while end users should use the requestproject resource.
Expand or mouse-over a field for more information about it.
apiVersion:kind:metadata:
annotations:
[string]:clusterName:creationTimestamp:deletionGracePeriodSeconds:deletionTimestamp:finalizers:
- [string]:generateName:generation:initializers:
pending:
- name:result:
apiVersion:code:details:
causes:
- field:message:reason:group:kind:name:retryAfterSeconds:uid:kind:message:metadata:
resourceVersion:selfLink:reason:status:labels:
[string]:name:namespace:ownerReferences:
- apiVersion:blockOwnerDeletion:controller:kind:name:uid:resourceVersion:selfLink:uid:spec:
finalizers:
- [string]:status:
phase:
Create a Project
POST /apis/project.openshift.io/v1/projects HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json'
{
  "kind": "Project",
  "apiVersion": "project.openshift.io/v1",
  ...
}
Read the specified Project
GET /apis/project.openshift.io/v1/projects/$NAME HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close
List or watch objects of kind Project
GET /apis/project.openshift.io/v1/projects HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close
$ curl -k \
    -H "Authorization: Bearer $TOKEN" \
    -H 'Accept: application/json' \
    https://$ENDPOINT/apis/project.openshift.io/v1/projects
| Parameter | Description | 
|---|---|
pretty  | 
If 'true', then the output is pretty printed.  | 
fieldSelector  | 
A selector to restrict the list of returned objects by their fields. Defaults to everything.  | 
includeUninitialized  | 
If true, partially initialized resources are included in the response.  | 
labelSelector  | 
A selector to restrict the list of returned objects by their labels. Defaults to everything.  | 
resourceVersion  | 
When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.  | 
timeoutSeconds  | 
Timeout for the list/watch call.  | 
watch  | 
Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.  | 
Watch changes to an object of kind Project
GET /apis/project.openshift.io/v1/watch/projects/$NAME HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close
$ curl -k \
    -H "Authorization: Bearer $TOKEN" \
    -H 'Accept: application/json' \
    https://$ENDPOINT/apis/project.openshift.io/v1/watch/projects/$NAME
| Parameter | Description | 
|---|---|
fieldSelector  | 
A selector to restrict the list of returned objects by their fields. Defaults to everything.  | 
includeUninitialized  | 
If true, partially initialized resources are included in the response.  | 
labelSelector  | 
A selector to restrict the list of returned objects by their labels. Defaults to everything.  | 
pretty  | 
If 'true', then the output is pretty printed.  | 
resourceVersion  | 
When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.  | 
timeoutSeconds  | 
Timeout for the list/watch call.  | 
watch  | 
Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.  | 
Watch individual changes to a list of Project
GET /apis/project.openshift.io/v1/watch/projects HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close
$ curl -k \
    -H "Authorization: Bearer $TOKEN" \
    -H 'Accept: application/json' \
    https://$ENDPOINT/apis/project.openshift.io/v1/watch/projects
| Parameter | Description | 
|---|---|
fieldSelector  | 
A selector to restrict the list of returned objects by their fields. Defaults to everything.  | 
includeUninitialized  | 
If true, partially initialized resources are included in the response.  | 
labelSelector  | 
A selector to restrict the list of returned objects by their labels. Defaults to everything.  | 
pretty  | 
If 'true', then the output is pretty printed.  | 
resourceVersion  | 
When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it’s 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.  | 
timeoutSeconds  | 
Timeout for the list/watch call.  | 
watch  | 
Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.  | 
Replace the specified Project
PUT /apis/project.openshift.io/v1/projects/$NAME HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json'
{
  "kind": "Project",
  "apiVersion": "project.openshift.io/v1",
  ...
}
Partially update the specified Project
PATCH /apis/project.openshift.io/v1/projects/$NAME HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json-patch+json'
{
  ...
}
$ curl -k \
    -X PATCH \
    -d @- \
    -H "Authorization: Bearer $TOKEN" \
    -H 'Accept: application/json' \
    -H 'Content-Type: application/json-patch+json' \
    https://$ENDPOINT/apis/project.openshift.io/v1/projects/$NAME <<'EOF'
{
  ...
}
EOF
Delete a Project
DELETE /apis/project.openshift.io/v1/projects/$NAME HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close