diff --git a/howto/diagnose-with-tracing/zipkin.md b/howto/diagnose-with-tracing/zipkin.md index cf4d39d69..490e097c1 100644 --- a/howto/diagnose-with-tracing/zipkin.md +++ b/howto/diagnose-with-tracing/zipkin.md @@ -66,13 +66,13 @@ The following steps shows you how to configure Dapr to send distributed tracing First, deploy Zipkin: ```bash -kubectl run zipkin --image openzipkin/zipkin --port 9411 +kubectl create deployment zipkin --image openzipkin/zipkin ``` Create a Kubernetes service for the Zipkin pod: ```bash -kubectl expose deploy zipkin --type ClusterIP --port 9411 +kubectl expose deployment zipkin --type ClusterIP --port 9411 ``` Next, create the following YAML files locally: @@ -156,4 +156,4 @@ set `samplingRate : "0"` in the configuration. The valid range of samplingRate i ## References -* [How-To: Use W3C Trace Context for distributed tracing](../../howto/use-w3c-tracecontext/readme.md) \ No newline at end of file +* [How-To: Use W3C Trace Context for distributed tracing](../../howto/use-w3c-tracecontext/readme.md)