From 834d9e9f03be403eab026e113640d60489092437 Mon Sep 17 00:00:00 2001 From: Oleg Butuzov Date: Mon, 18 Nov 2019 03:49:41 +0200 Subject: [PATCH] task/hpa example enhancement (#17604) Using removable Pod instead of Deployment in HPA example. --- .../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 51f2e16d47..d112ad9abb 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 @@ -110,7 +110,7 @@ Now, we will see how the autoscaler reacts to increased load. We will start a container, and send an infinite loop of queries to the php-apache service (please run it in a different terminal): ```shell -kubectl run -i --tty load-generator --image=busybox /bin/sh +kubectl run --generator=run-pod/v1 -it --rm load-generator --image=busybox /bin/sh Hit enter for command prompt