@@ -44,11 +44,11 @@ Another invaluable source of information is the log of containers being run
4444in Kubernetes.
4545These 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
5050kubectl 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
5252kubectl logs < pod-name> -n < namespace> -f
5353```
5454
@@ -67,7 +67,7 @@ those replicas.
6767
6868There 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