Managed Clusters - Run Command
提交命令以針對受控叢集執行。
AKS 會建立 Pod 來執行命令。 這主要適用於私人叢集。 如需詳細資訊,請參閱 AKS 執行命令。
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand?api-version=2024-09-01
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
resource
|
path | True |
string |
資源群組的名稱。 名稱不區分大小寫。 |
resource
|
path | True |
string |
受控叢集資源的名稱。 Regex 模式: |
subscription
|
path | True |
string uuid |
目標訂用帳戶的標識碼。 此值必須是 UUID。 |
api-version
|
query | True |
string |
要用於這項作業的 API 版本。 |
要求本文
名稱 | 必要 | 類型 | Description |
---|---|---|---|
command | True |
string |
要執行的命令。 |
clusterToken |
string |
針對 AKS AAD 伺服器應用程式發出的 AuthToken。 |
|
context |
string |
base64 編碼的 zip 檔案,其中包含命令所需的檔案。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
命令已完成異步模式,依位置標頭追蹤。 !!! 這僅適用於 autorest,您永遠不會從此 api 取得 200 !! |
|
202 Accepted |
接受 標題 Location: string |
|
Other Status Codes |
描述作業失敗原因的錯誤回應。 如果叢集不存在,則會傳回 404 (找不到)。 |
安全性
azure_auth
Azure Active Directory OAuth2 Flow
類型:
oauth2
Flow:
implicit
授權 URL:
https://login.microsoftonline.com/common/oauth2/authorize
範圍
名稱 | Description |
---|---|
user_impersonation | 模擬您的用戶帳戶 |
範例
submitNewCommand
範例要求
POST https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/runCommand?api-version=2024-09-01
{
"command": "kubectl apply -f ns.yaml",
"context": "",
"clusterToken": ""
}
範例回覆
location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/commandResults/0e9872e6629349dc865e27ee6f8bab2d?api-version=2024-09-01
{
"id": "def7b3ea71bd4f7e9d226ddbc0f00ad9",
"properties": {
"provisioningState": "succeeded",
"exitCode": 0,
"startedAt": "2021-02-17T00:28:20Z",
"finishedAt": "2021-02-17T00:28:33Z",
"logs": "namespace dummy created"
}
}
定義
名稱 | Description |
---|---|
Cloud |
來自容器服務的錯誤回應。 |
Cloud |
來自容器服務的錯誤回應。 |
Run |
執行命令要求 |
Run |
執行命令結果。 |
CloudError
來自容器服務的錯誤回應。
名稱 | 類型 | Description |
---|---|---|
error |
錯誤的詳細數據。 |
CloudErrorBody
來自容器服務的錯誤回應。
名稱 | 類型 | Description |
---|---|---|
code |
string |
錯誤的識別碼。 程序代碼是不變的,而且是要以程序設計方式取用。 |
details |
錯誤的其他詳細數據清單。 |
|
message |
string |
描述錯誤的訊息,適用於在使用者介面中顯示。 |
target |
string |
特定錯誤的目標。 例如,錯誤中的屬性名稱。 |
RunCommandRequest
執行命令要求
名稱 | 類型 | Description |
---|---|---|
clusterToken |
string |
針對 AKS AAD 伺服器應用程式發出的 AuthToken。 |
command |
string |
要執行的命令。 |
context |
string |
base64 編碼的 zip 檔案,其中包含命令所需的檔案。 |
RunCommandResult
執行命令結果。
名稱 | 類型 | Description |
---|---|---|
id |
string |
命令標識碼。 |
properties.exitCode |
integer |
命令的結束代碼 |
properties.finishedAt |
string |
命令完成的時間。 |
properties.logs |
string |
命令輸出。 |
properties.provisioningState |
string |
布建狀態 |
properties.reason |
string |
布建State 為何設定為失敗的說明(如果是的話)。 |
properties.startedAt |
string |
命令啟動的時間。 |