Consolidate YAML files [part-4] (#9241)

This PR consolidates YAML files used in the
`tasks/debug-application-cluster` subdirectory.

Depends-On: #9236
This commit is contained in:
Qiming
2018-07-03 02:17:19 +08:00
committed by k8s-ci-robot
parent a11e02d575
commit d15da5a726
20 changed files with 38 additions and 49 deletions
@@ -96,7 +96,7 @@ than Google Kubernetes Engine. Proceed at your own risk.
1. Deploy a `ConfigMap` with the logging agent configuration by running the following command:
```
kubectl create -f https://k8s.io/docs/tasks/debug-application-cluster/fluentd-gcp-configmap.yaml
kubectl create -f https://k8s.io/examples/debug/fluentd-gcp-configmap.yaml
```
The command creates the `ConfigMap` in the `default` namespace. You can download the file
@@ -105,7 +105,7 @@ than Google Kubernetes Engine. Proceed at your own risk.
1. Deploy the logging agent `DaemonSet` by running the following command:
```
kubectl create -f https://k8s.io/docs/tasks/debug-application-cluster/fluentd-gcp-ds.yaml
kubectl create -f https://k8s.io/examples/debug/fluentd-gcp-ds.yaml
```
You can download and edit this file before using it as well.
@@ -129,16 +129,16 @@ default fluentd-gcp-v2.0 3 3 3 beta.kubernetes.i
```
To understand how logging with Stackdriver works, consider the following
synthetic log generator pod specification [counter-pod.yaml](/docs/tasks/debug-application-cluster/counter-pod.yaml):
synthetic log generator pod specification [counter-pod.yaml](/examples/debug/counter-pod.yaml):
{{< code file="counter-pod.yaml" >}}
{{< codenew file="debug/counter-pod.yaml" >}}
This pod specification has one container that runs a bash script
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 https://k8s.io/docs/tasks/debug-application-cluster/counter-pod.yaml
kubectl create -f https://k8s.io/examples/debug/counter-pod.yaml
```
You can observe the running pod:
@@ -175,7 +175,7 @@ pod "counter" deleted
and then recreating it:
```shell
$ kubectl create -f https://k8s.io/docs/tasks/debug-application-cluster/counter-pod.yaml
$ kubectl create -f https://k8s.io/examples/debug/counter-pod.yaml
pod "counter" created
```