This command creates a VAST compute cluster.
Usage
computecluster create --name NAME
--cnode-ids CNODE_IDS
--resource-preset LOW|BALANCED|MEM_HEAVY|HIGH_COMPUTE
--static-ip-ranges STATIC_IP_RANGES
--netmask NETMASK
[--cluster-cidr CLUSTER_CIDR]
[--service-cidr SERVICE_CIDR]
[--backup-frequency BACKUP_FREQUENCY]
[--root-certificate ROOT_CERT]
[--intermediate-certificate INT_CERT]
[--intermediate-key INT_KEY]
[--default-gateway DEFAULT_GATEWAY]
[--vlan VLAN]
Required Parameters
| Specifies a name for the compute cluster. |
| Specifies which CNodes from which to allocate resources to the compute cluster. A minimum of three CNodes must be allocated. Specify the |
| Sets which resources to allocate from the specified CNodes. Specify one of the following options:
|
| A virtual IP pool to be statically allocated to the compute cluster nodes. These IPs are used by the compute cluster's nodes to communicate with each other. They should be valid external IPs. Allocate a minimum of one more than the number of CNodes you allocate using the Specify |
| Specify a network mask for the virtual IP pool specified by For example |
Options
| A subnet internal to the compute cluster from which IPs are assigned to pods. Change this from the default if the default CIDR overlaps with IP ranges used by infrastructure or external services, as this can cause incorrect routing and connectivity failures. Specify Default: 10.42.0.0/16 |
| A subnet internal to the compute cluster from which IPs are assigned to services. Change this from the default if the default CIDR overlaps with IP ranges used by infrastructure or external services, as this can cause incorrect routing and connectivity failures. Specify Default: 10.43.0.0/16 |
| The frequency of the compute cluster's database backup, in minutes. Specify Default: 60 |
| Provides a root CA certificate for the compute cluster. The root CA certificate is one of three artifacts that the compute cluster uses to act as a certificate authority (CA): a root CA certificate, an intermediate CA certificate and an intermediate private key. VMS can autogenerate these certificates or you can use your own. If you do not provide all three artifacts, VMS autogenerates them. If you include this option, include also Specify |
| Provides an intermediate CA certificate for the compute cluster. The intermediate CA certificate is one of three artifacts that the compute cluster uses to act as a certificate authority (CA): a root CA certificate, an intermediate CA certificate and an intermediate private key. VMS can autogenerate these certificates or you can use your own. If you do not provide all three artifacts, VMS autogenerates them. If you include this option, include also |
| Provides an intermediate key for the compute cluster. The intermediate key is one of three artifacts that the compute cluster uses to act as a certificate authority (CA): a root CA certificate, an intermediate CA certificate and an intermediate private key. VMS can autogenerate these certificates or you can use your own. If you do not provide all three artifacts, VMS autogenerates them. If you include this option, include also |
| Sets a default gateway for the compute cluster. |
| Tags the compute cluster network with a VLAN. Valid values: 1-4095. |
Example
vcli: admin> computecluster create --name my-compute-cluster --cnode-ids 1,2,3 --resource-preset BALANCED --static-ip-ranges 10.0.0.1,10.0.0.5 10.0.0.10,10.0.0.15 --netmask 255.255.255.0