Remove --instance-type from constellation create in docs

This commit is contained in:
Nils Hanke 2022-09-02 12:21:51 +02:00 committed by Nils Hanke
parent c0bfb9b61e
commit 50bde9173f
2 changed files with 4 additions and 4 deletions

View File

@ -47,14 +47,14 @@ The following steps will guide you through the process of creating a cluster and
<tabItem value="azure" label="Azure" default>
```bash
constellation create azure --control-plane-nodes 1 --worker-nodes 2 --instance-type Standard_D4a_v4 -y
constellation create azure --control-plane-nodes 1 --worker-nodes 2 -y
```
</tabItem>
<tabItem value="gcp" label="GCP" default>
```bash
constellation create gcp --control-plane-nodes 1 --worker-nodes 2 --instance-type n2d-standard-2 -y
constellation create gcp --control-plane-nodes 1 --worker-nodes 2 -y
```
</tabItem>

View File

@ -60,14 +60,14 @@ The following command creates a cluster with one control-plane and two worker no
<tabItem value="azure" label="Azure" default>
```bash
constellation create azure --control-plane-nodes 1 --worker-nodes 2 --instance-type Standard_D4a_v4 -y
constellation create azure --control-plane-nodes 1 --worker-nodes 2 -y
```
</tabItem>
<tabItem value="gcp" label="GCP" default>
```bash
constellation create gcp --control-plane-nodes 1 --worker-nodes 2 --instance-type n2d-standard-2 -y
constellation create gcp --control-plane-nodes 1 --worker-nodes 2 -y
```
</tabItem>