From ffbfb5f6dd8b4250e322b49fcf1cc7026779c4ef Mon Sep 17 00:00:00 2001 From: Welkson Renny de Medeiros Date: Fri, 22 Apr 2022 15:34:37 -0300 Subject: [PATCH] Update README.md fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c16430..ab91091 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Imagine I want to deploy nginx to a Kubernetes cluster. I'd probably type something like this in my terminal: ```bash -kubectl run nginx --image=nginx --replicas=3 +kubectl create deployment nginx --image=nginx --replicas=3 ``` and hit enter. After a few seconds, I should see three nginx pods spread across all my worker nodes. It works like magic, and that's great! But what's really going on under the hood?