Skip to content

Commit

Permalink
Merge pull request #1 from welkson/fix-readme
Browse files Browse the repository at this point in the history
Fix kubectl syntax example
  • Loading branch information
welkson committed Apr 22, 2022
2 parents 049386e + ffbfb5f commit 840a562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit 840a562

Please sign in to comment.