Skip to content

Commit dc7d722

Browse files
committed
Fixed typos
1 parent 8bbcb98 commit dc7d722

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/Manual/Deployment/Kubernetes/DriverConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Note that even a simple `Service` of type `ClusterIP` already behaves as a load-
103103
The exception to this is cursor related requests made to an ArangoDB `Cluster` deployment.
104104
The coordinator that handles an initial query request (that results in a `Cursor`)
105105
will save some in-memory state in that coordinator, if the result of the query
106-
is to big to be transfer back in the response of the initial request.
106+
is too big to be transfer back in the response of the initial request.
107107

108108
Follow-up requests have to be made to fetch the remaining data.
109109
These follow-up requests must be handled by the same coordinator to which the initial
@@ -116,7 +116,7 @@ To resolve this uncertainty, make sure to run your client application in the sam
116116
Kubernetes cluster and synchronize your endpoints before making the
117117
initial query request.
118118
This will result in the use (by the driver) of internal DNS names of all coordinators.
119-
A follow-up request can then be send to exaclty the same coordinator.
119+
A follow-up request can then be sent to exactly the same coordinator.
120120

121121
If your client application is running outside the Kubernetes cluster this is much harder
122122
to solve.

docs/Manual/Deployment/Kubernetes/Storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ used by groups of servers using the `spec.<group>.storageClassName`
1111
setting.
1212

1313
This is an example of a `Cluster` deployment that stores its agent & dbserver
14-
data on `PersistentVolumes` that using the `my-local-ssd` `StorageClass`
14+
data on `PersistentVolumes` that use the `my-local-ssd` `StorageClass`
1515

1616
```yaml
1717
apiVersion: "database.arangodb.com/v1alpha"

docs/Manual/Deployment/Kubernetes/Troubleshooting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ Another invaluable source of information is the log of containers being run
4444
in Kubernetes.
4545
These logs are accessible through the `Pods` that group these containers.
4646

47-
The fetch the logs of the default container running in a `Pod`, run:
47+
To fetch the logs of the default container running in a `Pod`, run:
4848

4949
```bash
5050
kubectl logs <pod-name> -n <namespace>
51-
# or with follow option to keep inspecting logs while their are written
51+
# or with follow option to keep inspecting logs while they are written
5252
kubectl logs <pod-name> -n <namespace> -f
5353
```
5454

@@ -67,7 +67,7 @@ those replicas.
6767

6868
There are two common causes for this.
6969

70-
1) The `Pods` cannot be scheduled because there are no enough nodes available.
70+
1) The `Pods` cannot be scheduled because there are not enough nodes available.
7171
This is usally only the case with a `spec.environment` setting that has a value of `Production`.
7272

7373
Solution: Add more nodes.
@@ -101,7 +101,7 @@ those `PersistentVolumes`, it depends on the type of server that was using the v
101101

102102
- If an `Agent` was using the volume, it can be repaired as long as 2 other agents are still healthy.
103103
- If a `DBServer` was using the volume, and the replication factor of all database
104-
collections is 2 of higher, and the remaining dbservers are still healthy,
104+
collections is 2 or higher, and the remaining dbservers are still healthy,
105105
the cluster will duplicate the remaining replicas to
106106
bring the number of replicases back to the original number.
107107
- If a `DBServer` was using the volume, and the replication factor of a database

0 commit comments

Comments
 (0)