get_kubernetes_live_status
Retrieve real-time Kubernetes resource status for specific projects and environments in Octopus Deploy deployments, including multi-tenant support.
Instructions
Get Kubernetes live status for a project and environment
This tool retrieves the live status of Kubernetes resources for a specific project and environment. Optionally include a tenant ID for multi-tenant deployments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentId | Yes | The ID of the environment | |
projectId | Yes | The ID of the project | |
spaceName | Yes | The space name | |
summaryOnly | No | Return summary information only | |
tenantId | No | The ID of the tenant (for multi-tenant deployments) |
Input Schema (JSON Schema)
{
"properties": {
"environmentId": {
"description": "The ID of the environment",
"type": "string"
},
"projectId": {
"description": "The ID of the project",
"type": "string"
},
"spaceName": {
"description": "The space name",
"type": "string"
},
"summaryOnly": {
"description": "Return summary information only",
"type": "boolean"
},
"tenantId": {
"description": "The ID of the tenant (for multi-tenant deployments)",
"type": "string"
}
},
"required": [
"spaceName",
"projectId",
"environmentId"
],
"type": "object"
}