Project
Delete Project
Delete a Project
A Project is software that provides some functionality.
Projects are uniquely identified by a UUID, prefixed with the string proj_, for example proj_c42014e7-baf5-4ec6-a502-858f98dca7c8
Projects can have zero or more Aliases. Aliases are completely free-form. They can be a URL, like github.com/kubernetes/kubernetes or a short string like k8s or kube.
Each Project has a ProjectType. Valid ProjectTypes include:
- platform: The Project represents a software platform, such as the Kubernetes Project itself.
- kube-addon: The Project represents a Kubernetes Addon, which is defined as some software that extends the functionality of the Kubernetes cluster and its API.
- kube-operator: The Project represents a Kubernetes [Operator][operator], which is defined as software written specifically against the Kubernetes API and is responsible for installing and managing the lifecycle of a Kubernetes Addon or Application Service.
- kube-control-plane-provider: The Project represents a Kubernetes control plane service, such as RKE, GKE or EKS.
- application-service: The Project represents application code that provides essential services to the rest of the application stack.
- application: The Project represents customer-specific or internal code.
A Project is not the packaging of that software. Packaging of Projects is described by the Package model.
DELETE
Response
204
No Content
Previous
List ReleasesList multiple ProjectReleases
A Project may have one or more <em>ProjectReleases</em>. A ProjectRelease is
the coordinated publication of one or more Packages for the Project having the
same Version string.
A ProjectRelease is always associated with a single ProjectRelease.
A ProjectRelease is uniquely identified by the combination of the Project
identifier and the Version string, separated by an '@' character, e.g.
<b>proj_a858f4d4-6e5b-4ab5-8d92-e9715b584ec1@1.5.12</b>
A ProjectRelease can have zero or more Changes associated with it that describe
the bug fixes and new features that were included in the ProjectRelease.
Next