Skip to content

Commit f022162

Browse files
committed
Typos
1 parent 65d3e25 commit f022162

File tree

1 file changed

+10
-10
lines changed
  • docs/Manual/GettingStarted/kube-arangodb

1 file changed

+10
-10
lines changed

docs/Manual/GettingStarted/kube-arangodb/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Starting an ArangoDB database (either single server or full blown cluster)
44
on Kubernetes involves a lot of resources.
55

6-
The servers needs to run in Pods, you need secrets for authentication,
7-
TLS certificates and Services to enable communication with the database.
6+
The servers needs to run in `Pods`, you need `Secrets` for authentication,
7+
TLS certificates and `Services` to enable communication with the database.
88

99
Use `kube-arangodb`, the ArangoDB Kubernetes operator to greatly simplify
1010
this process.
@@ -17,19 +17,19 @@ in a Kubernetes cluster.
1717

1818
`kube-arangodb` is a set of two operators that you deploy in your Kubernetes
1919
cluster to (1) manage deployments of the ArangoDB database and (2)
20-
provide `PersistenVolume's` on local storage of your nodes for optimal
20+
provide `PersistenVolumes` on local storage of your nodes for optimal
2121
storage performace.
2222

23-
Note that the operator that provides `PersistentVolume's` is not needed to
24-
run ArangoDB deployments. You can also use `PersistentVolume's` provided
23+
Note that the operator that provides `PersistentVolumes` is not needed to
24+
run ArangoDB deployments. You can also use `PersistentVolumes` provided
2525
by other controllers.
2626

2727
In this guide we'll focus on the `ArangoDeployment` operator.
2828

2929
## Installing `kube-arangodb`
3030

3131
To install `kube-arangodb` in your Kubernetes cluster, make sure
32-
you have acces to this cluster and the rights to deployment resources
32+
you have acces to this cluster and the rights to deploy resources
3333
at cluster level.
3434

3535
For now, any recent Kubernetes cluster will do (e.g. `minikube`).
@@ -41,10 +41,10 @@ kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/<versi
4141
kubectl apply -f https://raw.githubusercontent.com/arangodb/kube-arangodb/<version>/manifests/arango-deployment.yaml
4242
```
4343

44-
The first command installs two `CustomResourceDefinition's` in your Kubernetes cluster:
44+
The first command installs two `CustomResourceDefinitions` in your Kubernetes cluster:
4545

4646
- `ArangoDeployment` is the resource used to deploy ArangoDB database.
47-
- `ArangoLocalStorage` is the resource used to provision `PersistentVolume's` on local storage.
47+
- `ArangoLocalStorage` is the resource used to provision `PersistentVolumes` on local storage.
4848

4949
The second command installs a `Deployment` that runs the operator that controls
5050
`ArangoDeployment` resources.
@@ -87,7 +87,7 @@ To inspect the pods created for this deployment, run:
8787
kubectl get pods --selector=arango_deployment=single-server
8888
```
8989

90-
The result will looks something like this:
90+
The result will look similar to this:
9191

9292
```plain
9393
NAME READY STATUS RESTARTS AGE
@@ -178,7 +178,7 @@ to inspect your cluster. Just use the correct deployment name (`cluster` instead
178178

179179
Connecting to your cluster requires a different `Service` since the
180180
selector now has to select your `cluster` deployment and instead
181-
of selecting all `Pod's` with role `single` it will have to select
181+
of selecting all `Pods` with role `single` it will have to select
182182
all coordinator pods.
183183

184184
The service looks like this:

0 commit comments

Comments
 (0)