vmware-archive / pcfdev

This is the depricated version of PCF Dev - please visit the current Github repository https://github.com/cloudfoundry-incubator/cfdev for the latest updates
Apache License 2.0
272 stars 67 forks source link

Doubts #21

Closed pradp closed 8 years ago

pradp commented 8 years ago
  1. Is pcf console available?
  2. Is there a way to install services in the market place?
  3. If we want to bind to rabbitmq, redis services, how to do that in this case? Is set-env for an application work?

Note: Please label this entry as questions. I don't see an option to do it myself.

davidwadden commented 8 years ago

Thanks for your interest @pradp

  1. No console is available yet. This is planned in the future.
  2. There isn't a way to install services from the marketplace. We're currently working on adding Redis, Mysql and RabbitMQ as available services by default.
  3. I'd recommend using cf create-user-provided-service to connect your app to the instance of Rabbit or Redis you have running on your machine. That should avoid having to do a manual cf set-env.

More info on cf cups can be found at https://docs.cloudfoundry.org/devguide/services/user-provided.html

debu66er commented 8 years ago

@cf-gitbot I tried to follow the issue in Pivotal Tracker but it seems we need some kind of privileges? I got a not allowed error. I was interested in follow the progress of adding some services by default to micropcf.

pradp commented 8 years ago

@davidwadden Thanks for your reply. I need clarification on user provided service for rabbitmq or redis. How do i create it to make it work automatically with spring boot auto configuration? I have posted in stack overflow too. The issue involves spring boot in specific but still wanted to check with you on this.

http://stackoverflow.com/questions/35065403/how-to-create-a-user-provided-redis-service-which-spring-auto-configuration-clou

This is much needed for my usecase to use micropcf without any code change in my application as well as to keep redis/rabbitmq service outside the VM and use less memory.

pradp commented 8 years ago

I created user provided service for redis and the spring connector picked it up but there is issue with application connecting to the redis server running in local machine. I will open another issue as it is nothing to do with this one. Thanks for clarifying my doubts.