You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/commands/clusters.adoc
+66-14Lines changed: 66 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,18 +77,6 @@ The full list of flags supported by `clusters create` is:
77
77
--cidr <string>: cider block for the cluster
78
78
```
79
79
80
-
The `--free-tier` flag can be used to create free tier clusters in the active Capella project.
81
-
For example:
82
-
83
-
```
84
-
👤 Charlie 🏠 remote in ☁️ default._default._default
85
-
> clusters create --free-tier --provider aws --region eu-west-1 --cidr 10.0.0.0/24 --description "My first Couchbase cluster"
86
-
```
87
-
88
-
Free clusters clusters are more limited in how they can be customised, and only the name, description, cloud provider and cidr can be configured using flags.
89
-
Check the https://docs.couchbase.com/cloud/management-api-reference/index.html#tag/Free-Tier[Capella API docs] for more information.
90
-
Currently free tier clusters do not support creation with a JSON cluster definition.
91
-
92
80
If you are using a paid cluster and want complete control over the structure of the cluster then you can pipe a JSON cluster definition into the command:
93
81
94
82
```
@@ -99,7 +87,8 @@ If you are using a paid cluster and want complete control over the structure of
99
87
"description": "A gcp cluster created using cbshell",
100
88
"cloudProvider": {
101
89
"type": "gcp",
102
-
"region": "us-east1"
90
+
"region": "us-central1",
91
+
"cidr": "10.0.23.0/24"
103
92
},
104
93
"serviceGroups": [
105
94
{
@@ -139,14 +128,77 @@ If you are using a paid cluster and want complete control over the structure of
See the https://docs.couchbase.com/cloud/management-api-reference/index.html#tag/Clusters/operation/postCluster[Capella API docs] for more examples of cluster definitions with different providers.
149
138
139
+
The `--free-tier` flag can be used to create free tier clusters in the active Capella project.
140
+
For example:
141
+
142
+
```
143
+
👤 Charlie 🏠 remote in ☁️ default._default._default
144
+
> clusters create --free-tier --provider aws --region eu-west-1 --cidr 10.0.0.0/24 --description "My first Couchbase cluster"
145
+
```
146
+
147
+
Free clusters clusters are more limited in how they can be customised, and only the name, description, cloud provider and cidr can be configured.
148
+
Check the https://docs.couchbase.com/cloud/management-api-reference/index.html#tag/Free-Tier[Capella API docs] for more information.
149
+
Free tier clusters can be created by piping a cluster definition into `clusters create` as follows:
150
+
151
+
```
152
+
👤 Charlie 🏠 remote in ☁️ default._default._default
0 commit comments