Inspects the current deployment status for this app env
Inspects the current deployment status for this app env
Path Parameters
Workspace to use
Application environment to use
Responses
- 200
- 400
- 401
- 403
- 500
Current status of the deployment
- application/json
- Schema
- Example (from schema)
Schema
components undefined[]
Components describes the status of the deployed components
cloudResource
CloudResource identifies the status of the cloud resource associated with this component, when the component type is CloudResource.
pods undefined[]
Pods gives a detailed status for each pod for this component in the environment.
conditions undefined[]
Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
containerStatuses undefined[]
The list has one entry per container in the manifest. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
lastState
Details about the container's last termination condition.
running
Details about a running container
terminated
Details about a terminated container
waiting
Details about a waiting container
state
Details about the container's current condition.
running
Details about a running container
terminated
Details about a terminated container
waiting
Details about a waiting container
initContainerStatuses undefined[]
The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
lastState
Details about the container's last termination condition.
running
Details about a running container
terminated
Details about a terminated container
waiting
Details about a waiting container
state
Details about the container's current condition.
running
Details about a running container
terminated
Details about a terminated container
waiting
Details about a waiting container
{
"components": [
{
"certReady": true,
"cloudResource": {
"moduleVersion": "string",
"plan": "string",
"ready": true
},
"component": "string",
"componentType": "string",
"deployed": true,
"endpoint": "string",
"exposed": true,
"pods": [
{
"conditions": [
{
"lastProbeTime": "string",
"lastTransitionTime": "string",
"message": "string",
"reason": "string",
"status": "string",
"type": "string"
}
],
"containerStatuses": [
{
"containerID": "string",
"image": "string",
"imageID": "string",
"lastState": {
"running": {
"startedAt": "string"
},
"terminated": {
"containerID": "string",
"exitCode": 0,
"finishedAt": "string",
"message": "string",
"reason": "string",
"signal": 0,
"startedAt": "string"
},
"waiting": {
"message": "string",
"reason": "string"
}
},
"name": "string",
"ready": true,
"restartCount": 0,
"started": true,
"state": {
"running": {
"startedAt": "string"
},
"terminated": {
"containerID": "string",
"exitCode": 0,
"finishedAt": "string",
"message": "string",
"reason": "string",
"signal": 0,
"startedAt": "string"
},
"waiting": {
"message": "string",
"reason": "string"
}
}
}
],
"initContainerStatuses": [
{
"containerID": "string",
"image": "string",
"imageID": "string",
"lastState": {
"running": {
"startedAt": "string"
},
"terminated": {
"containerID": "string",
"exitCode": 0,
"finishedAt": "string",
"message": "string",
"reason": "string",
"signal": 0,
"startedAt": "string"
},
"waiting": {
"message": "string",
"reason": "string"
}
},
"name": "string",
"ready": true,
"restartCount": 0,
"started": true,
"state": {
"running": {
"startedAt": "string"
},
"terminated": {
"containerID": "string",
"exitCode": 0,
"finishedAt": "string",
"message": "string",
"reason": "string",
"signal": 0,
"startedAt": "string"
},
"waiting": {
"message": "string",
"reason": "string"
}
}
}
],
"message": "string",
"phase": "string",
"reason": "string"
}
],
"podsReady": 0,
"podsTotal": 0,
"tls": true
}
],
"deployed": true
}
Validation error of supplied parameters/body
- application/json
- Schema
- Example (from schema)
Schema
fieldErrors undefined[]
{
"code": 0,
"fieldErrors": [
{
"errCode": "string",
"field": "string",
"message": "string"
}
],
"message": "string"
}
If not authenticated
If authenticated but not authorized
A generic API error containing the cause of the error
- application/json
- Schema
- Example (from schema)
Schema
{
"code": 0,
"detail": "string",
"message": "string",
"uri": "string",
"verb": "string"
}