From 895ffc0ba9096ef2f59279c869c130b5ce83663d Mon Sep 17 00:00:00 2001 From: Weibin Lin Date: Fri, 18 Aug 2017 08:38:42 +0800 Subject: [PATCH] Update debug-application.md --- docs/tasks/debug-application-cluster/debug-application.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tasks/debug-application-cluster/debug-application.md b/docs/tasks/debug-application-cluster/debug-application.md index 5a129be1d1..4a8004e850 100644 --- a/docs/tasks/debug-application-cluster/debug-application.md +++ b/docs/tasks/debug-application-cluster/debug-application.md @@ -7,14 +7,14 @@ title: Troubleshoot Applications This guide is to help users debug applications that are deployed into Kubernetes and not behaving correctly. This is *not* a guide for people who want to debug their cluster. For that you should check out -[this guide](/docs/admin/cluster-troubleshooting) +[this guide](/docs/admin/cluster-troubleshooting). * TOC {:toc} ## FAQ -Users are highly encouraged to check out our [FAQ](https://github.com/kubernetes/kubernetes/wiki/User-FAQ) +Users are highly encouraged to check out our [FAQ](https://github.com/kubernetes/kubernetes/wiki/User-FAQ). ## Diagnosing the problem @@ -184,8 +184,8 @@ in the endpoints list, it's likely that the proxy can't contact your pods. There are three things to check: - * Are your pods working correctly? Look for restart count, and [debug pods](#debugging-pods) - * Can you connect to your pods directly? Get the IP address for the Pod, and try to connect directly to that IP + * Are your pods working correctly? Look for restart count, and [debug pods](#debugging-pods). + * Can you connect to your pods directly? Get the IP address for the Pod, and try to connect directly to that IP. * Is your application serving on the port that you configured? Kubernetes doesn't do port remapping, so if your application serves on 8080, the `containerPort` field needs to be 8080. #### More information