Merge pull request #641 from dapr/mchmarny-patch-3

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

View File

@ -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: