dapr / installer-bundle

Dapr bundled installer containing CLI and runtime packaged together. This eliminated the need to download Docker images when initializing Dapr locally.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

components is empty

a44281071 opened this issue · comments

OS: windows 10
docker: windows docker-desktop
dapr: daprbundle_windows_amd64.zip

Result of init --from-dir:

  • .dapr/componets folder is empty.
  • no dapr_zipkin docker container.
  • no dapr_redis docker container.

Hi @a44281071, this is expected behavior. Currently we don't bundle zipkin/redis containers in daprbundle to avoid dependency on these third party packages. Since the containers ain't there, corresponding component yaml files are also removed from .dapr/components folder.

For downloading zipkin/redis, you can pull them manually:

1. docker run --name "dapr_zipkin" --restart always -d -p 9411:9411 openzipkin/zipkin
2. docker run --name "dapr_redis" --restart always -d -p 6379:6379 redislabs/rejson

And the component files need to be created manually as well.

Hi @a44281071, this is expected behavior. Currently we don't bundle zipkin/redis containers in daprbundle to avoid dependency on these third party packages. Since the containers ain't there, corresponding component yaml files are also removed from .dapr/components folder.

For downloading zipkin/redis, you can pull them manually:

1. docker run --name "dapr_zipkin" --restart always -d -p 9411:9411 openzipkin/zipkin
2. docker run --name "dapr_redis" --restart always -d -p 6379:6379 redislabs/rejson

And the component files need to be created manually as well.

It does require an update in the README describing the same, will do.

Closed by #18