Skip to content

Commit 7a55561

Browse files
committed
fix wording
1 parent d70f5c7 commit 7a55561

File tree

1 file changed

+7
-7
lines changed
  • platform/install/environments

1 file changed

+7
-7
lines changed

platform/install/environments/aws.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ This guide provides step-by-step instructions for deploying the platform on [AWS
2525
Before starting, ensure you have the following tools installed:
2626
<BasePrerequisites />
2727
- vCluster CLI <InstallCli />
28-
- [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html)
29-
- [eksctl](https://eksctl.io/installation/)
28+
- `AWS CLI` is a command-line tool for interacting with Amazon Web Services resources and services. See the (AWS CLI User Guide)[https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html] for installation instructions.
29+
- `eksctl`: a command-line utility that simplifies creating and managing Kubernetes clusters on Amazon EKS (Elastic Kubernetes Service). See the [eksctl documentation](https://eksctl.io/installation/) for installation instructions.
3030
:::note
3131
Ensure you have the necessary IAM permissions to create clusters and manage cloud services.
3232
:::
@@ -72,7 +72,7 @@ This command creates an AWS EKS cluster named `vcluster-demo` in the region `eu-
7272
<Step>
7373
Verify the cluster creation.
7474

75-
Verify that the AWS EKS was created successfully by listing the nodes:
75+
Verify that the AWS EKS was created successfully by getting the cluster info:
7676

7777
```bash title="List cluster nodes"
7878
kubectl cluster-info
@@ -100,7 +100,7 @@ easy steps.
100100
Deploy platform using the vCluster CLI.
101101

102102
Now that you have vCluster running on AWS EKS, set up the [platform
103-
](/platform/install/quick-start-guide) and configure GPC in the following steps.
103+
](/platform/install/quick-start-guide) and configure in the following steps.
104104

105105
Easiest way to deploy a platform is using the `vcluster CLI`
106106

@@ -230,7 +230,7 @@ You would also need an [AWS ACM](https://aws.amazon.com/certificate-manager/) Ce
230230

231231
<Step>
232232
Configure DNS in Route53.
233-
To use a custom domain, you need to configure create a new Route53 hosted zone.
233+
To use a custom domain, you need to create a new Route53 hosted zone.
234234

235235
```bash title="Crete a Route53 Hosted Zone"
236236
aws route53 create-hosted-zone --name vcluster-platform.yourdomain.tld --caller-reference vcluster-demo
@@ -246,7 +246,7 @@ eksctl create addon --name external-dns --cluster $CLUSTER_NAME --auto-apply-pod
246246
</Step>
247247

248248
<Step>
249-
Create an Ingress object. Please replace `arn:aws:acm:region:account-id:certificate/certificate-id` with the correct value of the ACM certificate ARN.
249+
Create an Ingress object. Replace `arn:aws:acm:region:account-id:certificate/certificate-id` with the correct value of the ACM certificate ARN.
250250

251251
```bash
252252
cat <<EOF | kubectl apply -f -
@@ -321,4 +321,4 @@ following command:
321321
eksctl delete cluster -n $CLUSTER_NAME
322322
```
323323

324-
Please don't forget to also cleanup an ACM certificate and Route53 hosted zone if needed.
324+
Don't forget to also cleanup an ACM certificate and Route53 hosted zone if needed.

0 commit comments

Comments
 (0)