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: lib/xrp/README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
| Contributed by |
4
4
|:--------------------------------:|
5
-
| Pedro Aceves <br/>acevespa@amazon.com|
5
+
|[Pedro Aceves](https://github.com/acevesp)|
6
6
7
7
XRP node deployment on AWS. All nodes are configure as ["Stock Servers"](https://xrpl.org/docs/infrastructure/configuration/server-modes/run-rippled-as-a-stock-server)
8
8
@@ -27,7 +27,7 @@ XRP node deployment on AWS. All nodes are configure as ["Stock Servers"](https:/
27
27
## Well-Architected
28
28
29
29
<details>
30
-
<summary>Review the for pros and cons of this solution.</summary>
30
+
<summary>Review pros and cons of this solution.</summary>
31
31
32
32
### Well-Architected Checklist
33
33
@@ -50,7 +50,7 @@ This is the Well-Architected checklist for XRP nodes implementation of the AWS B
50
50
|| Resource monitoring | How are workload resources monitored? | Resources are being monitored using Amazon CloudWatch dashboards. Amazon CloudWatch custom metrics are being pushed via CloudWatch Agent. |
51
51
| Performance efficiency | Compute selection | How is compute solution selected? | Compute solution is selected based on best price-performance. |
52
52
|| Storage selection | How is storage solution selected? | Storage solution is selected based on best price-performance. |
53
-
| Operational excellence | Workload health | How is health of workload determined? | Health of workload is determined via AWS Application Load Balancer Target Group Health Checks, on port 8545. |
53
+
| Operational excellence | Workload health | How is health of workload determined? | Health of workload is determined via AWS Application Load Balancer Target Group Health Checks, on port 6005. |
54
54
| Sustainability | Hardware & services | Select most efficient hardware for your workload | Amazon EC2 R7a instances support the Sustainability Pillar of the AWS Well-Architected Framework by offering memory optimization that enables more efficient resource utilization, potentially reducing overall energy consumption and hardware requirements for data-intensive workloads. |
55
55
56
56
</details>
@@ -59,7 +59,7 @@ This is the Well-Architected checklist for XRP nodes implementation of the AWS B
59
59
60
60
### Open AWS CloudShell
61
61
62
-
To begin, ensure you login to your AWS account with permissions to create and modify resources in IAM, EC2, EBS, VPC, S3, KMS, and Secrets Manager.
62
+
To begin, ensure you login to your AWS account with permissions to create and modify resources in IAM, EC2, EBS, VPC, S3, and KMS.
63
63
64
64
From the AWS Management Console, open the [AWS CloudShell](https://docs.aws.amazon.com/cloudshell/latest/userguide/welcome.html), a web-based shell environment. If unfamiliar, review the [2-minute YouTube video](https://youtu.be/fz4rbjRaiQM) for an overview and check out [CloudShell with VPC environment](https://docs.aws.amazon.com/cloudshell/latest/userguide/creating-vpc-environment.html) that we'll use to test nodes API from internal IP address space.
65
65
@@ -93,7 +93,7 @@ cd lib/xrp
93
93
cp ./sample-configs/.env-sample-testnet .env
94
94
nano .env
95
95
```
96
-
> **NOTE:***You can find more examples inside `sample-configs`*
96
+
> **NOTE:***You can find more examples inside `sample-configs`*
97
97
98
98
99
99
4. Deploy common components such as IAM role:
@@ -194,13 +194,13 @@ pwd
194
194
# Make sure you are in aws-blockchain-node-runners/lib/xrp
195
195
196
196
# Destroy HA Nodes
197
-
cdk destroy XRP-ha-nodes
197
+
npx cdk destroy XRP-ha-nodes
198
198
199
199
# Destroy Single Node
200
-
cdk destroy XRP-single-node
200
+
npx cdk destroy XRP-single-node
201
201
202
202
# Delete all common components like IAM role and Security Group
0 commit comments