File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
content/en/docs/tasks/run-application Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ kubectl apply -f https://k8s.io/examples/application/mysql/mysql-configmap.yaml
69
69
```
70
70
71
71
This ConfigMap provides ` my.cnf ` overrides that let you independently control
72
- configuration on the primary MySQL server and replicas.
72
+ configuration on the primary MySQL server and its replicas.
73
73
In this case, you want the primary server to be able to serve replication logs to replicas
74
74
and you want replicas to reject any writes that don't come via replication.
75
75
@@ -418,8 +418,9 @@ kubectl uncordon <node-name>
418
418
419
419
## Scaling the number of replicas
420
420
421
- With MySQL replication, you can scale your read query capacity by adding replicas.
422
- With StatefulSet, you can do this with a single command:
421
+ When you use MySQL replication, you can scale your read query capacity by
422
+ adding replicas.
423
+ For a StatefulSet, you can achieve this with a single command:
423
424
424
425
``` shell
425
426
kubectl scale statefulset mysql --replicas=5
You can’t perform that action at this time.
0 commit comments