From 89d4a6fc0b048624b06e6de10d510f2021510846 Mon Sep 17 00:00:00 2001 From: bpelikan Date: Sat, 23 Nov 2019 16:41:26 +0100 Subject: [PATCH] Update kubectl get hpa output --- .../run-application/horizontal-pod-autoscale-walkthrough.md | 6 +++--- 1 file changed, 3 insertions(+), 3 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 d112ad9abb332..c46f76aa6f896 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 @@ -102,7 +102,7 @@ php-apache Deployment/php-apache/scale 0% / 50% 1 10 1 ``` Please note that the current CPU consumption is 0% as we are not sending any requests to the server -(the ``CURRENT`` column shows the average across all the pods controlled by the corresponding deployment). +(the ``TARGET`` column shows the average across all the pods controlled by the corresponding deployment). ## Increase load @@ -123,8 +123,8 @@ Within a minute or so, we should see the higher CPU load by executing: kubectl get hpa ``` ``` -NAME REFERENCE TARGET CURRENT MINPODS MAXPODS REPLICAS AGE -php-apache Deployment/php-apache/scale 305% / 50% 305% 1 10 1 3m +NAME REFERENCE TARGET MINPODS MAXPODS REPLICAS AGE +php-apache Deployment/php-apache/scale 305% / 50% 1 10 1 3m ```