Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

createFabricCluster

Prev Next

VPC環境で利用できます。

Fabric Clusterを作成します。

構文

createFabricCluster構文は次の通りです。

./ncloud vserver createFabricCluster \
    --vpcNo <vpc-no> \
    --zoneCode <zone-code> \
    --fabricClusterPoolNo <fabric-cluster-pool-no> \
    --fabricClusterName <fabric-cluster-name> \
    [--fabricClusterDescription <fabric-cluster-description>] \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

オプション

createFabricClusterの実行時に指定できるオプションについて説明します。

必須オプション

createFabricClusterの必須オプションです。

オプション タイプ 必須の有無 説明
--vpcNo String Required VPC番号
--zoneCode String Required ゾーンコード
--fabricClusterPoolNo String Required Fabric Cluster Pool番号
--fabricClusterName String Required Fabric Cluster名
  • 英字の小文字、数字、記号の-を組み合わせて3~30文字以内で入力
  • 文字列の先頭文字は英字の小文字、末尾文字は英字の小文字または数字のみ使用

任意オプション

createFabricClusterの任意オプションです。指定しない場合、オプションにはデフォルト値が適用されます。

オプション タイプ 必須の有無 説明
--fabricClusterDescription String Optional Fabric Clusterの説明(Byte)
  • 0~1,000

共通オプション

vserverコマンドで共通して使用するオプションについては、Server (VPC)のオプションをご参照ください。

Fabric Clusterの作成リクエストが成功すると、クラスタの識別情報と初期状態が返されます。

コマンド

コマンドの例は次の通りです。

./ncloud vserver createFabricCluster \
    --vpcNo 12345678 \
    --zoneCode KR-1 \
    --fabricClusterPoolNo 24680135 \
    --fabricClusterName test-cluster-01 \
    --fabricClusterDescription "Test fabric cluster" \
    --regionCode KR \
    --output json

出力

出力の例は次の通りです。

{
  "createFabricClusterResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13579246",
        "fabricClusterName": "test-cluster-01",
        "fabricClusterStatus": {
          "code": "CREAT",
          "codeName": "作成中"
        },
        "fabricClusterDescription": "Test fabric cluster",
        "regionCode": "KR",
        "zoneCode": "KR-1",
        "vpcNo": "12345678",
        "fabricClusterPoolNo": "24680135",
        "fabricClusterPoolName": "gpu-cluster-pool-01",
        "fabricClusterPoolCode": "gpu-cluster-pool-01",
        "createDate": "2026-05-15T10:02:05+0900",
        "fabricClusterServerInstanceList": []
      }
    ],
    "requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "returnCode": "0",
    "returnMessage": "success"
  }
}