From 73d9327c3f7b2524718338e4fb758c1b1fb995a3 Mon Sep 17 00:00:00 2001 From: Artem Vysotsky Date: Tue, 18 Apr 2017 17:29:27 -0700 Subject: [PATCH] Update logging-stackdriver.md --- docs/tasks/debug-application-cluster/logging-stackdriver.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tasks/debug-application-cluster/logging-stackdriver.md b/docs/tasks/debug-application-cluster/logging-stackdriver.md index af2489435e..ca80aed743 100644 --- a/docs/tasks/debug-application-cluster/logging-stackdriver.md +++ b/docs/tasks/debug-application-cluster/logging-stackdriver.md @@ -80,16 +80,16 @@ Stackdriver Logging agents to the running cluster. 1. Deploy a `ConfigMap` with the logging agent configuration by running the following command: ```shell - kubectl create -f https://k8s.io/docs/tasks/debug-application-cluster/fluentd-gcp-configmap.yaml + kubectl create -f https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml ``` - The command creates the `ConfigMap` in the default namespace. You can download the file + The command creates the `ConfigMap` in the `kube-system` namespace. You can download the file manually and change it before creating the `ConfigMap` object. 1. Deploy the logging agent `DaemonSet` by running the following command: ```shell - kubectl create -f https://k8s.io/docs/tasks/debug-application-cluster/fluentd-gcp-ds.yaml + kubectl create -f https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml ``` You can download and edit this file before using it as well.