From 3ee7b1f35448600d89c14369bf34566b3a45fa97 Mon Sep 17 00:00:00 2001 From: nuno-faria Date: Wed, 13 Oct 2021 12:02:00 +0100 Subject: [PATCH 1/2] Remove extra parenthesis --- .../run-application/horizontal-pod-autoscale-walkthrough.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md b/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md index 6328d458fb..d4ada6cf53 100644 --- a/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md +++ b/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md @@ -83,7 +83,7 @@ The following command will create a Horizontal Pod Autoscaler that maintains bet controlled by the php-apache deployment we created in the first step of these instructions. Roughly speaking, HPA will increase and decrease the number of replicas (via the deployment) to maintain an average CPU utilization across all Pods of 50% -(since each pod requests 200 milli-cores by `kubectl run`), this means average CPU usage of 100 milli-cores). +(since each pod requests 200 milli-cores by `kubectl run`, this means average CPU usage of 100 milli-cores). See [here](/docs/tasks/run-application/horizontal-pod-autoscale/#algorithm-details) for more details on the algorithm. ```shell From d7ccf551bf59a2110b39f63d0040575cdec7306d Mon Sep 17 00:00:00 2001 From: nuno-faria Date: Sat, 16 Oct 2021 12:55:35 +0100 Subject: [PATCH 2/2] Create a separate sentence --- .../run-application/horizontal-pod-autoscale-walkthrough.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md b/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md index d4ada6cf53..545e268a10 100644 --- a/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md +++ b/content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md @@ -82,8 +82,8 @@ Now that the server is running, we will create the autoscaler using The following command will create a Horizontal Pod Autoscaler that maintains between 1 and 10 replicas of the Pods controlled by the php-apache deployment we created in the first step of these instructions. Roughly speaking, HPA will increase and decrease the number of replicas -(via the deployment) to maintain an average CPU utilization across all Pods of 50% -(since each pod requests 200 milli-cores by `kubectl run`, this means average CPU usage of 100 milli-cores). +(via the deployment) to maintain an average CPU utilization across all Pods of 50%. +Since each pod requests 200 milli-cores by `kubectl run`, this means an average CPU usage of 100 milli-cores. See [here](/docs/tasks/run-application/horizontal-pod-autoscale/#algorithm-details) for more details on the algorithm. ```shell