From dd3e660cfefffc34755d7ba86923e97a592b2fd0 Mon Sep 17 00:00:00 2001 From: Bruno Saboia Date: Wed, 23 Feb 2022 17:22:05 -0300 Subject: [PATCH] Remove useless whitespace --- .../debug-application-cluster/determine-reason-pod-failure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md b/content/en/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md index b0f409ca14..b7d306fa64 100644 --- a/content/en/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md +++ b/content/en/docs/tasks/debug-application-cluster/determine-reason-pod-failure.md @@ -75,7 +75,7 @@ only the termination message: kubectl get pod termination-demo -o go-template="{{range .status.containerStatuses}}{{.lastState.terminated.message}}{{end}}" - If you are running a multi-container pod, you can use a Go template to include the container's name. By doing so, you can discover which of the containers is failing: +If you are running a multi-container pod, you can use a Go template to include the container's name. By doing so, you can discover which of the containers is failing: kubectl get pod multi-container-pod -o go-template='{{range .status.containerStatuses}}{{printf "%s:\n%s\n\n" .name .lastState.terminated.message}}{{end}}'