Instance Metadata Service
Get Container Status
Gets the health statuses of the running container
GET
/
v1
/
status
Response
200 - application/json
Represents the health statuses of the running container.
ready
boolean
requiredtrue
if the running container is ready. If a readiness probe is defined, this returns the latest result of the probe. If a readiness probe is not defined but a startup probe is defined, this returns the same value as the started
property. If neither a readiness probe nor a startup probe are defined, returns true
.
started
boolean
requiredtrue
if the running container is started. If a startup probe is defined, this returns the latest result of the probe. If a startup probe is not defined, returns true
.
Was this page helpful?