From 80483fe91f228563c03e9e545ca2d7fb562a0db2 Mon Sep 17 00:00:00 2001 From: Cruz Fernandez Date: Fri, 3 Nov 2023 13:33:32 -0300 Subject: [PATCH 1/2] Add a clarification for autoscaling on minikube Added a very small clarification on how to run this guide on `minikube`. --- .../run-application/horizontal-pod-autoscale-walkthrough.md | 6 ++++++ 1 file changed, 6 insertions(+) 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 7a0f0f5a2a..9c0971f981 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 @@ -50,6 +50,12 @@ new kinds of resource that represent metric readings. To learn how to deploy the Metrics Server, see the [metrics-server documentation](https://github.com/kubernetes-sigs/metrics-server#deployment). +For enabling on minikube you can enable it with + +```shell +minikube addons enable metrics-server +``` + ## Run and expose php-apache server From 369317b85511eb350ba62e4c201bdf22b6465a17 Mon Sep 17 00:00:00 2001 From: Cruz Fernandez Date: Tue, 7 Nov 2023 16:56:43 -0300 Subject: [PATCH 2/2] Rephrased with slightly better English update with comment from shubham82 . thanks a lot! --- .../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 9c0971f981..874fa0dc65 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 @@ -50,7 +50,7 @@ new kinds of resource that represent metric readings. To learn how to deploy the Metrics Server, see the [metrics-server documentation](https://github.com/kubernetes-sigs/metrics-server#deployment). -For enabling on minikube you can enable it with +If you are running {{< glossary_tooltip term_id="minikube" >}}, run the following command to enable metrics-server: ```shell minikube addons enable metrics-server