From 76bd752c413311dfa5c26c5c3ea74e4c354629f9 Mon Sep 17 00:00:00 2001 From: Steve Perry Date: Thu, 4 May 2017 18:24:00 -0700 Subject: [PATCH] Fix yaml path. (#3646) --- docs/tasks/debug-application-cluster/logging-stackdriver.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/debug-application-cluster/logging-stackdriver.md b/docs/tasks/debug-application-cluster/logging-stackdriver.md index c2ca8f22e3..ca46a30d84 100644 --- a/docs/tasks/debug-application-cluster/logging-stackdriver.md +++ b/docs/tasks/debug-application-cluster/logging-stackdriver.md @@ -125,7 +125,7 @@ that writes out the value of a counter and the date once per second, and runs indefinitely. Let's create this pod in the default namespace. ```shell -kubectl create -f http://k8s.io/docs/user-guide/logging/examples/counter-pod.yaml +kubectl create -f http://k8s.io/docs/tasks/debug-application-cluster/counter-pod.yaml ``` You can observe the running pod: @@ -162,7 +162,7 @@ pod "counter" deleted and then recreating it: ```shell -$ kubectl create -f http://k8s.io/docs/user-guide/logging/examples/counter-pod.yaml +$ kubectl create -f http://k8s.io/docs/tasks/debug-application-cluster/counter-pod.yaml pod "counter" created ```