Available in VPC
Create a Fabric cluster.
Syntax
The createFabricCluster syntax is as follows:
./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>]
Options
This section describes the options available when running createFabricCluster.
Required options
The following options are required for createFabricCluster.
| Options | Type | Required | Description |
|---|---|---|---|
--vpcNo |
String | Required | VPC number
|
--zoneCode |
String | Required | Zone code
|
--fabricClusterPoolNo |
String | Required | Fabric cluster pool number |
--fabricClusterName |
String | Required | Fabric cluster name
|
Optional options
These are the optional options for createFabricCluster. Options that are not specified will use their default values.
| Options | Type | Required | Description |
|---|---|---|---|
--fabricClusterDescription |
String | Optional | Fabric cluster description (byte)
|
Common options
For information about the options common to all vserver subcommands, see Server (VPC) options.
Examples
If the Fabric cluster creation request is successful, the cluster's identification information and initial status are returned.
Command
The command example is as follows:
./ncloud vserver createFabricCluster \
--vpcNo 12345678 \
--zoneCode KR-1 \
--fabricClusterPoolNo 24680135 \
--fabricClusterName test-cluster-01 \
--fabricClusterDescription "Test fabric cluster" \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"createFabricClusterResponse": {
"totalRows": 1,
"fabricClusterList": [
{
"fabricClusterNo": "13579246",
"fabricClusterName": "test-cluster-01",
"fabricClusterStatus": {
"code": "CREAT",
"codeName": "Creating"
},
"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"
}
}