mongocli atlas clusters update
On this page
mongocli atlas
commands are now deprecated because there's a new, dedicated CLI available for Atlas users. Migrate to the Atlas CLI to enjoy the same capabilities and the latest features. You can use mongocli atlas
commands until April 30, 2023.Update a MongoDB Atlas cluster.
Syntax
mongocli atlas clusters update [clusterName] [options]
Arguments
Name | Type | Required | Description |
---|---|---|---|
clusterName | string | false | Name of the cluster to update. |
Options
Name | Type | Required | Description |
---|---|---|---|
--diskSizeGB | float | false | Capacity, in gigabytes, of the host's root volume. |
-f, --file | string | false | File name to use, optional file with a json cluster configuration. |
-h, --help | false | help for update | |
--mdbVersion | string | false | MongoDB version of the cluster. |
-o, --output | string | false | Output format. Valid values are json, json-path, go-template, or go-template-file. |
--projectId | string | false | Project ID to use. Overrides the settings in the configuration file or environment variable. |
--tier | string | false | Tier for each data-bearing server in the cluster. |
Inherited Options
Name | Type | Required | Description |
---|---|---|---|
-P, --profile | string | false | Profile to use from your configuration file. |
Examples
Update tier for a cluster: $ mongocli atlas cluster update <clusterName> --projectId <projectId> --tier M50 Update disk size for a cluster: $ mongocli atlas cluster update <clusterName> --projectId <projectId> --diskSizeGB 20 Update MongoDB version for a cluster: $ mongocli atlas cluster update <clusterName> --projectId <projectId> --mdbVersion 4.2