From 929c4c385de7dbaf8c509a674949c1ed50fc9df9 Mon Sep 17 00:00:00 2001 From: Alex Serbul <22218473+AlexanderSerbul@users.noreply.github.com> Date: Fri, 21 Jul 2023 21:54:13 +0300 Subject: [PATCH] Update module5.md --- site/content/en/docs/tutorials/kubernetes_101/module5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/en/docs/tutorials/kubernetes_101/module5.md b/site/content/en/docs/tutorials/kubernetes_101/module5.md index a149bbf8baa2..c3512b96bf29 100644 --- a/site/content/en/docs/tutorials/kubernetes_101/module5.md +++ b/site/content/en/docs/tutorials/kubernetes_101/module5.md @@ -50,7 +50,7 @@ Two important columns of this command are: - *DESIRED* displays the desired number of replicas of the application, which you define when you create the Deployment. This is the desired state. - *CURRENT* displays how many replicas are currently running. -Next, let's scan the Deployment to 4 replicas. We'll use the `kubectl scale` command, following by the deployment type, name and desired number of instances: +Next, let's scale the Deployment to 4 replicas. We'll use the `kubectl scale` command, following by the deployment type, name and desired number of instances: ```shell kubectl scale deployments/kubernetes-bootcamp --replicas=4