-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Amend hosted node GCP documentation (#7347)
### Description GCP won't display public images, so you need to know the name before launching, which means you need to go via the API or `gcloud`.
- Loading branch information
Alex
authored
Mar 22, 2021
1 parent
7e7a791
commit 9b43d07
Showing
3 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,15 @@ If you would like to keep up-to-date with all the news happening in the Celo com | |
You can add the [Celo Signal public calendar](https://calendar.google.com/calendar/u/0/[email protected]) as well which has relevant dates. | ||
{% endhint %} | ||
|
||
Currently cLabs provides the following machine images: | ||
|
||
- `celo-alfajores-full-node-latest` | ||
- `celo-alfajores-lightest-node-latest` | ||
- `celo-mainnet-full-node-latest` | ||
- `celo-mainnet-lightest-node-latest` | ||
|
||
Please note that the time taken to sync a full node could be significant. | ||
|
||
## Amazon Web Services | ||
|
||
To get started with a Celo blockchain node on AWS, ensure you're in the North Virginia region (us-east-1). You'll need to navigate to the AMIs tab of the EC2 page. From there you can change your search to only include `Public images` and enter `celo-`. | ||
|
@@ -22,10 +31,12 @@ For more information if you're not familiar with launching EC2 instances from ma | |
|
||
## Google Cloud Platform | ||
|
||
To get started with a Celo blockchain node on GCP, you'll need to navigate to the Images tab of the Compute Engine page. From there you can search for public images and enter `celo-`. | ||
GCP by default won't display public machine images when you search for them in your console. This means you'll need to go via the API or [gcloud](https://cloud.google.com/sdk/gcloud) command line to launch a node. | ||
|
||
{% hint style="info" %} | ||
The cLabs GCP account is called `celo-testnet`, if you're new to Celo or GCP, ensure that the `Created by` column of the image you're launching matches `celo-testnet`. | ||
{% endhint %} | ||
Depending on the type of node you'd like to launch (see the above list), the `gcloud` command to use may look a bit like this: | ||
|
||
```bash | ||
gcloud compute instances create <INSTANCE_NAME> --image <IMAGE_NAME> --image-project celo-testnet --project <YOUR_GCP_PROJECT> | ||
``` | ||
|
||
For more information please check the excellent [GCP documentation](https://cloud.google.com/compute/docs/images) on how to launch a compute instance from a public image. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters