Skip to content

Commit 5fed513

Browse files
committed
Typos / Formatting
1 parent 15bce31 commit 5fed513

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

docs/Manual/Tutorials/Kubernetes/EKS.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ $ aws --version
2323

2424
### Configure AWS client
2525

26-
Refer to the [documentation](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html) to accordingly fill in the below with your credentials.
26+
Refer to the [AWS documentation](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html)
27+
to accordingly fill in the below with your credentials.
2728
Pay special attention to the correct region information to find your cluster next.
2829

2930
```
@@ -75,7 +76,8 @@ $ kubectl get nodes
7576
### Create worker Stack
7677

7778
On Amazon EKS, we need to launch worker nodes, as the cluster has none.
78-
Open Amazon's [cloud formation console](https://console.aws.amazon.com/cloudformation/) and choose `Create Stack` by specifying this S3 template URL:
79+
Open Amazon's [cloud formation console](https://console.aws.amazon.com/cloudformation/)
80+
and choose `Create Stack` by specifying this S3 template URL:
7981

8082
```
8183
https://amazon-eks.s3-us-west-2.amazonaws.com/cloudformation/2018-08-30/amazon-eks-nodegroup.yaml
@@ -85,7 +87,9 @@ https://amazon-eks.s3-us-west-2.amazonaws.com/cloudformation/2018-08-30/amazon-e
8587

8688
### Worker stack details
8789

88-
Pay good attention to details here. If your input is not complete, your worker nodes are either not spawned or you won't be able to integrate the workers into your kubernetes cluster.
90+
Pay good attention to details here. If your input is not complete, your worker
91+
nodes are either not spawned or you won't be able to integrate the workers
92+
into your kubernetes cluster.
8993

9094
**Stack name**: Choose a name for your stack. For example ArangoDB-stack
9195

@@ -101,7 +105,7 @@ Pay good attention to details here. If your input is not complete, your worker n
101105

102106
**NodeInstanceType**: Choose an instance type for your worker nodes. For this test we went with the default `t2.medium` instances.
103107

104-
**NodeImageId**: Dependent on the region, there are two image Ids for boxes with and wothout GPU support.
108+
**NodeImageId**: Dependent on the region, there are two image Ids for boxes with and without GPU support.
105109

106110
| Region | without GPU | with GPU |
107111
|-----------|-----------------------|-----------------------|
@@ -180,7 +184,7 @@ $ kubectl create clusterrolebinding tiller-cluster-rule \
180184
--clusterrole=cluster-admin --serviceaccount=kube-system:tiller
181185
clusterrolebinding.rbac.authorization.k8s.io/tiller-cluster-rule created
182186
```
183-
* Initialise `helm`
187+
* Initialize `helm`
184188
```
185189
$ helm init --service-account tiller
186190
$HELM_HOME has been configured at ~/.helm.

docs/Manual/Tutorials/Kubernetes/GKE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Click on `CREATE CLUSTER`.
1515

1616
In the form that follows, enter information as seen in the screenshot below.
1717

18-
![create a cluser](./gke-create-cluster.png)
18+
![create a cluster](./gke-create-cluster.png)
1919

20-
We've succesfully ran clusters with 4 `1 vCPU` nodes or 3 `2 vCPU` nodes.
20+
We have successfully ran clusters with 4 `1 vCPU` nodes or 3 `2 vCPU` nodes.
2121
Smaller node configurations will likely lead to unschedulable `Pods`.
2222

2323
Once you click `Create`, you'll return to the list of clusters and your

0 commit comments

Comments
 (0)