mirror of https://github.com/dapr/docs.git
Merge pull request #641 from dapr/mchmarny-patch-3
deployment in stead of run for 1.15+ compatibility
This commit is contained in:
commit
225c55eb78
|
@ -66,13 +66,13 @@ The following steps shows you how to configure Dapr to send distributed tracing
|
||||||
First, deploy Zipkin:
|
First, deploy Zipkin:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
kubectl run zipkin --image openzipkin/zipkin --port 9411
|
kubectl create deployment zipkin --image openzipkin/zipkin
|
||||||
```
|
```
|
||||||
|
|
||||||
Create a Kubernetes service for the Zipkin pod:
|
Create a Kubernetes service for the Zipkin pod:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
kubectl expose deploy zipkin --type ClusterIP --port 9411
|
kubectl expose deployment zipkin --type ClusterIP --port 9411
|
||||||
```
|
```
|
||||||
|
|
||||||
Next, create the following YAML files locally:
|
Next, create the following YAML files locally:
|
||||||
|
@ -156,4 +156,4 @@ set `samplingRate : "0"` in the configuration. The valid range of samplingRate i
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
* [How-To: Use W3C Trace Context for distributed tracing](../../howto/use-w3c-tracecontext/readme.md)
|
* [How-To: Use W3C Trace Context for distributed tracing](../../howto/use-w3c-tracecontext/readme.md)
|
||||||
|
|
Loading…
Reference in New Issue