Merge pull request #640 from dapr/mchmarny-patch-2

deployment in stead of run for 1.15+ compatibility
This commit is contained in:
Mark Chmarny 2020-06-09 15:25:43 -07:00 committed by GitHub
commit b27d1c9ce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,13 +14,13 @@ The following steps show you how to configure Dapr to send distributed tracing d
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 file locally: Next, create the following YAML file locally: