Fix wrong config for --config option

Fix wrong config for --config option
This commit is contained in:
Young Bu Park 2020-04-21 12:26:01 -07:00 committed by GitHub
parent 3805c32f11
commit 6723b97177
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ docker run -e APPINSIGHTS_INSTRUMENTATIONKEY=<Your Instrumentation Key> -e APPIN
> Note: dapr-localforwarder is created by using [0.1-beta1 release](https://github.com/microsoft/ApplicationInsights-LocalForwarder/releases/tag/v0.1-beta1). If you want to create your own image, please use [this dockerfile](./localforwarder/Dockerfile).
1. Copy *tracing.yaml* to a *components* folder under the same folder where you run you application.
1. Copy native.yaml and tracing.yaml to a *components/* sub-folder under the same folder where you run you application.
* native.yaml
@ -68,7 +68,7 @@ spec:
3. When running in the local mode, you need to launch Dapr with the `--config` parameter:
```bash
dapr run --app-id mynode --app-port 3000 --config ./tracing.yaml node app.js
dapr run --app-id mynode --app-port 3000 --config ./components/tracing.yaml node app.js
```
#### Kubernetes environment