From e34f862a2e7b4d66023e94acdffc4155390c053e Mon Sep 17 00:00:00 2001 From: Nilesh Londhe Date: Sun, 19 Nov 2017 16:35:09 -0800 Subject: [PATCH] correcting the watch command after helm install --- deploy/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/README.md b/deploy/README.md index 013d92311..c488dc50f 100644 --- a/deploy/README.md +++ b/deploy/README.md @@ -231,7 +231,7 @@ helm install stable/nginx-ingress --name my-nginx To check if the ingress controller pods have started, run the following command: ```console -kubectl get pods --all-namespaces -l app=ingress-nginx --watch +kubectl --namespace default get services -o wide -w my-nginx-nginx-ingress-controller ``` Once the operator pods are running, you can cancel the above command by typing `Ctrl+C`.