Fix minor typo mistakes (#1752)

Fix minor typo mistakes
This commit is contained in:
Mohammad Asif Siddiqui
2017-08-16 19:51:21 +02:00
committed by Reinhard Nägele
parent 60d875d2cb
commit aea0b6d367
+4 -4
View File
@@ -8,7 +8,7 @@ To install the Cassandra Chart into your Kubernetes cluster (This Chart requires
helm install --namespace "cassandra" -n "cassandra" incubator/cassandra
```
After installation succuess, you can get a status of Chart
After installation succeeds, you can get a status of Chart
```bash
helm status "cassandra"
@@ -48,7 +48,7 @@ helm install --namespace "cassandra" -n "cassandra" --set config.cluster_size=5
```
## Install Chart with specific resource size
By default, this Chart will create a cassandra with CPU 2 vCPU and 4Gi of memery which is suitable for development environment.
By default, this Chart will create a cassandra with CPU 2 vCPU and 4Gi of memory which is suitable for development environment.
If you want to use this Chart for production, I would recommend to update the CPU to 4 vCPU and 16Gi. Also increase size of `max_heap_size` and `heap_new_size`.
To update the settings, edit `values.yaml`
@@ -67,7 +67,7 @@ nodes:
```
## Scale cassandra
When you want to change the cluser size of your cassandra, you can use the helm upgrade command.
When you want to change the cluster size of your cassandra, you can use the helm upgrade command.
```bash
helm upgrade --set config.cluster_size=5 cassandra incubator/cassandra
@@ -109,4 +109,4 @@ Example of `cassandra-stress` argument
```bash
cassandra-stress mixed ratio\(write=1,read=9\) n=1000000 cl=QUORUM -pop dist=UNIFORM\(1..1000000\) -mode native cql3 -rate threads=50 -log file=~/mixed_autorate_r9w1_1M.log -graph file=test2.html title=test revision=test2 -schema "replication(strategy=NetworkTopologyStrategy, factor=2)"
```
```