From 78e94f96a33c82dd83e9ee158602659d6c81a747 Mon Sep 17 00:00:00 2001 From: Ben Wallace Date: Wed, 8 Jan 2020 09:34:46 -0500 Subject: [PATCH] Update kube_deploy_cloud_app.md replacing kube (alias?) with kubectl --- labs/kube_deploy_cloud_app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/kube_deploy_cloud_app.md b/labs/kube_deploy_cloud_app.md index 970a18d..12f2b2b 100644 --- a/labs/kube_deploy_cloud_app.md +++ b/labs/kube_deploy_cloud_app.md @@ -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 /bin/bash +kubectl exec -it /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.