v1

latestOpenAPI 3.0.0Apache 2.02026-07-17143274803.9 KB
deployments

Get deployment details

Retrieves the details of a deployment

get/api/v1/orgs/{orgId}/clusters/{id}/deployments/{name}

Path parameters

orgIdinteger required

Organization identifier

idinteger required

Cluster identifier

namestring required

Deployment name

Query parameters

tagstring

Deployment tag

Response

Deployment details

releaseNamestring
chartstring
chartNamestring
chartVersionstring
namespacestring
versioninteger
updatedAtstring
statusstring
createdAtstring
notesstring base64

deployment notes in base64 encoded format

valuesobject

current values of the deployment

Example response

{
  "createdAt": "2018-07-03T14:23:19+02:00",
  "notes": "notes",
  "chartName": "mysql",
  "chartVersion": "0.7.0",
  "releaseName": "vigilant-mandrill",
  "values": {
    "metrics": {
      "enabled": "true"
    }
  },
  "namespace": "default",
  "chart": "mysql-0.7.0",
  "version": 1,
  "updatedAt": "2018-07-03T14:23:19+02:00",
  "status": "DEPLOYED"
}