correcting the watch command after helm install

This commit is contained in:
Nilesh Londhe 2017-11-19 16:35:09 -08:00 committed by GitHub
parent adfbc8cc84
commit e34f862a2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: To check if the ingress controller pods have started, run the following command:
```console ```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`. Once the operator pods are running, you can cancel the above command by typing `Ctrl+C`.