From ec6fc503039ba434310af172f2b015bebf9b408d Mon Sep 17 00:00:00 2001 From: Mark Chmarny Date: Tue, 9 Jun 2020 15:13:50 -0700 Subject: [PATCH] deployment in stead of run for 1.15+ compatibility Addresses #572 --- best-practices/troubleshooting/tracing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/best-practices/troubleshooting/tracing.md b/best-practices/troubleshooting/tracing.md index 5a5b61346..a58193839 100644 --- a/best-practices/troubleshooting/tracing.md +++ b/best-practices/troubleshooting/tracing.md @@ -14,13 +14,13 @@ The following steps show you how to configure Dapr to send distributed tracing d 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 file locally: