Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion labs/kube_deploy_cloud_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Get up and stretch!!! Just kidding... ok maybe that's not a bad idea... but to
So, make sure you have at least one pod running, and then use the kube exec command to get a shell into the container.
The format of the kube exec command is like this:
```bash
kube exec -it <pod name> /bin/bash
kubectl exec -it <pod name> /bin/bash
```

NOTE: Look at the [offical documentation here](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#exec) to see what the **'-it'** is doing.
Expand Down