dapr / installer-bundle

Dapr bundled installer containing CLI and runtime packaged together. This eliminated the need to download Docker images when initializing Dapr locally.
Apache License 2.0
37 stars 8 forks source link

components is empty #12

Closed a44281071 closed 1 year ago

a44281071 commented 2 years ago

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

Result of init --from-dir:

shivamkm07 commented 2 years ago

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.

shivamkm07 commented 2 years ago

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.

shivamkm07 commented 1 year ago

Closed by #18