既存のECSインスタンスをクラスターに追加します。
APIリクエストとレスポンスの形式
リクエスト形式
aliyun cs POST /clusters/<cluster_id>/attach --header "Content-Type=application/json" --body "$(cat attach.json)"
リクエストパラメーター:
-- header
: Content-Typeをapplication/jsonに設定する必要があります。-- body
: サーバーに送信されるコンテンツ。 コンテンツはローカルファイルに保存でき、有効なJSON形式である必要があります。create.json
ファイルには、次の内容が含まれています。
{
"password": "password of the ECS instance",
"instances": "instances that you want to add to the cluster",
"format_disk": "whether to format data disks",
"key_pair": "key pair",
"tags": "node tags in an array"
}
レスポンスの例
{
"list": [
{
"code": "200",
"instanceId": "i-2zee3oiwcyoz7kwd****",
"message": "successful"
},
{
"code": "200",
"instanceId": "i-2ze0lgm3y6iylcbt****",
"message": "successful"
}
],
"task_id": "T-5a544aff80282e39ea000039"
}