Skip to content

Commit

Permalink
[Docs] Fixing CLI install links.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raj Karamchedu authored and davidiw committed Aug 22, 2022
1 parent 1f8b9cf commit 6d04517
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion developer-docs-site/docs/nodes/validator-node/using-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Make sure you complete these pre-requisite steps before you proceed:
1. Set up your AWS account.
2. Make sure the following are installed on your local computer:

* **Aptos CLI 0.3.1**: https://github.com/aptos-labs/aptos-core/blob/main/crates/aptos/README.md
* **Aptos CLI 0.3.1**: https://aptos.dev/cli-tools/aptos-cli-tool/install-aptos-cli
* **Terraform 1.2.4**: https://www.terraform.io/downloads.html
* **Kubernetes CLI**: https://kubernetes.io/docs/tasks/tools/
* **AWS CLI**: https://aws.amazon.com/cli/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This guide assumes you already have Azure account setup.

Install pre-requisites if needed:

* Aptos CLI 0.3.1: https://github.com/aptos-labs/aptos-core/blob/main/crates/aptos/README.md
* Aptos CLI 0.3.1: https://aptos.dev/cli-tools/aptos-cli-tool/install-aptos-cli
* Terraform 1.2.4: https://www.terraform.io/downloads.html
* Kubernetes CLI: https://kubernetes.io/docs/tasks/tools/
* Azure CLI: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar_position: 12

# Using Docker

1. Install Docker and Docker-Compose, [Aptos CLI 0.3.1](https://github.com/aptos-labs/aptos-core/blob/main/crates/aptos/README.md).
1. Install Docker and Docker-Compose, [Aptos CLI 0.3.1](https://aptos.dev/cli-tools/aptos-cli-tool/install-aptos-cli).

:::caution Note on Apple M1

Expand Down
2 changes: 1 addition & 1 deletion developer-docs-site/docs/nodes/validator-node/using-gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This guide assumes you already have GCP account setup, and have created a new pr

Install the below pre-requisites if have not done so:

* Aptos CLI 0.3.1: https://github.com/aptos-labs/aptos-core/blob/main/crates/aptos/README.md
* Aptos CLI 0.3.1: https://aptos.dev/cli-tools/aptos-cli-tool/install-aptos-cli
* Terraform 1.2.4: https://www.terraform.io/downloads.html
* Kubernetes CLI: https://kubernetes.io/docs/tasks/tools/
* Google Cloud CLI: https://cloud.google.com/sdk/docs/install-sdk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ With your development environment ready, now you can start to setup your Validat
mkdir ~/$WORKSPACE
```
7. Generate the key pairs (node owner, voter, operator key, consensus key and networking key) in your working directory.
:::tip Install Aptos CLI
Before proceeding further, install **Aptos CLI 0.3.1**: https://aptos.dev/cli-tools/aptos-cli-tool/install-aptos-cli
:::
1. Generate the key pairs (node owner, voter, operator key, consensus key and networking key) in your working directory.
```
aptos genesis generate-keys --output-dir ~/$WORKSPACE/keys
Expand All @@ -58,7 +64,7 @@ With your development environment ready, now you can start to setup your Validat
Backup your private key files somewhere safe. These key files are important for you to establish ownership of your node. **Never share private keys with anyone.**
:::
8. Configure validator information. You need to setup a static IP / DNS address (DNS is much preferred) which can be used by the node, and make sure the network / firewalls are properly configured to accept external connections.
2. Configure validator information. You need to setup a static IP / DNS address (DNS is much preferred) which can be used by the node, and make sure the network / firewalls are properly configured to accept external connections.
You will need this information to register on Aptos community website later.
Expand Down Expand Up @@ -101,7 +107,7 @@ With your development environment ready, now you can start to setup your Validat
This will create two YAML files in the `~/$WORKSPACE/$USERNAME` directory: `owner.yaml` and `operator.yaml`.
9. Create a layout template file, which defines the node in the Aptos `validatorSet`.
3. Create a layout template file, which defines the node in the Aptos `validatorSet`.
```
aptos genesis generate-layout-template --output-file ~/$WORKSPACE/layout.yaml
Expand Down

0 comments on commit 6d04517

Please sign in to comment.