Organization
Delete Organization
Delete a Organization
An Organization is the top-level object that models a Chkk customer.
Organizations are uniquely identified by a UUID, prefixed with the string org_, for example org_c42014e7-baf5-4ec6-a502-858f98dca7c8
DELETE
Response
204
No Content
Previous
List PackagesList multiple Packages
A <em>Package</em> is a named bundle of software that is bundled (and
identified) in the format of a specific PackageSystem.
A <em>PackageSystem</em> is an identifier of a packaging ecosystem.
Packages can use one of the following PackageSystems:
* <b>helm</b> for Helm charts
* <b>kube</b> for raw YAML manifests or Kustomize overlays that install one or
more Kubernetes resources
A Package is identified by a globally-unique ID field which is a UUID string
prefixed with the string 'pkg_', for example
'pkg_c42014e7-baf5-4ec6-a502-858f98dca7c8'.
A Package may be associated with one or more Projects and zero or more
ProjectComponents.
A Package may have one or more links associated with it. There are two types
of links that hold special significance to a package: 'package.archive' and
'package.source'. The 'package.archive' link is used to indicate the location
of the package's archive, which is the file that contains the package's
contents. The 'package.source' link is used to indicate a location on the web
where the package may be observed in an un-archived format. For example, the
cert-manager helm chart package can have the following links
- 'package.archive': https:charts.jetstack.io/cert-manager
- 'package.source': https:github.com/cert-manager/cert-manager/tree/master/deploy/charts/cert-manager
A Package may have zero or more aliases associated with it in the 'Aliases'
field. An alias for a Package is a human readable string that uniquely
identifies the Package.
A Package may be associated with one or more ProjectComponents. Packages with
PackageSystem <b>helm</b> or <b>kube</b> are associated with ProjectComponents
via the Package's collection of PackageComponents. A PackageComponent, which
corresponds to a specific Kubernetes Resource of Kind Deployment, DaemonSet or
StatefulSet, may reference one or more Docker Images. Those Docker Images
correspond to a ProjectComponent for one or more Projects.
Next