Merge pull request #2004 from nlamirault/patch-1

Fix kube-dns component name
pull/2006/head
devin-donnelly 2016-12-20 16:07:17 -05:00 committed by GitHub
commit 71f32c8618
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ If you see that no pod is running or that the pod has failed/completed, the dns
Use `kubectl logs` command to see logs for the DNS daemons.
```
kubectl logs --namespace=kube-system $(kubectl get pods --namespace=kube-system -l k8s-app=kube-dns -o name) -c kubedns
kubectl logs --namespace=kube-system $(kubectl get pods --namespace=kube-system -l k8s-app=kube-dns -o name) -c kube-dns
kubectl logs --namespace=kube-system $(kubectl get pods --namespace=kube-system -l k8s-app=kube-dns -o name) -c dnsmasq
kubectl logs --namespace=kube-system $(kubectl get pods --namespace=kube-system -l k8s-app=kube-dns -o name) -c healthz
```