I am exploring options to have Netflix Zuul as API Gateway for my Microservices in Cloud Foundry. I am not able to see Zuul option in CF marketplace (I see Apigee integration with CF Service Broker API). I wanted to use Netflix Zuul as API Gateway, If I spin up Zuul as regular application it goes behind HA Proxy/Go Router, I think that is not right thing to do. May be I should implement Service Broker API and create Zuul as a service in CF marketplace. Can someone please through some light on this.I it involved task to make Netfliz Zuul as a Service Broker in CF? I see Eureka in Market place but not Zuul. Dont know why it is like this.. Thank you.
Netflix Zuul in Cloud Foundry
1.7k Views Asked by sreekar At
1
There are 1 best solutions below
Related Questions in SPRING-CLOUD
- spring cloud ribbon client to connect to ssl
- Accessing resource with expired bearer token fails with 500 http code
- Using spring cloud feign causes java.lang.NoClassDefFoundError: feign/Logger
- Installing Spring Cloud Services for Cloudfoundry without OpsManager
- Disable Spring Cloud Server Config using profile?
- Spring AWS SQS Reconnect After Losing Connection
- Microservices and cloud resource limitations
- Spring Cloud FeignClient decoding application/hal+json Resource<Object> return type
- Can a Library jar read properties from Spring Cloud Config Server?
- How to define a Shared DataSource in Spring Cloud Config
- Using spring cloud namespace and two DataSources
- AmazonEc2InstanceDataPropertySource.getProperty() is extremely slow when run outside of Amazon
- Spring cloud sidecar can not un-register nodeJS service once it is shut down
- How to config multiple Eureka Servers from client in Spring Cloud
- How can I use Amazon Web Services policy statement in my Java application?
Related Questions in NETFLIX-ZUUL
- Routing request to same service registered as two different service-ID
- Spring Oauth 2 SSO, Zuul and OpenAM integration
- Creating custom Zuul filters
- NetflixOSS Zuul Filter for rejecting requests
- spring boot cloud Zuul Proxy - hardcoded proxy route references in code
- Non java services with jHipster
- Redirection is not working with Zuul and spring boot
- Dynamic routing with spring zuul
- create route that points to a microservice method with zuul
- Spring Boot + Zuul: how to get the "Content-length" header from a file stream provided by RESTful services?
- Spring Boot REST service returning 406 if configured behind Zuul Proxy
- Use case for @EnableZuulServer
- Zuul routing : One endpoint with multiple microservices
- Why Keycloak OAUTH2 with Netflix Zuul Reverse Proxy don't pass Token
- Spring Cloud Zuul Reverse Proxy doesnt fetch data from CouchDB when URL encoded
Related Questions in SPRING-CLOUD-NETFLIX
- Adding Hystrix and Feign to Spring Boot project
- Eureka service deployed on PCF de-registers itself automatically after a few hours
- hystrix stream not responding
- Use case for @EnableZuulServer
- Load balancer does not have available server for client
- Zuul routing : One endpoint with multiple microservices
- Why zuul doesn't change dowstream service redirect ip in http header location?
- Hystrix - how to register ExceptionMapper
- Spring cloud loadBalanced userInfoUri problems
- Can ribbon balance load between multiple endpoints?
- Netflix Zuul in Cloud Foundry
- Service is accessible even after Eureka is shutdown
- netflix feign client - RequestMethod.POST submits empty json object to service
- [Spring-Cloud][Maven][Docker]Should Feign interfaces be put in FeignClients or EurekaClients?
- How does the eureka client find the eureka server in spring boot 1.5.2?
Related Questions in CLOUD-FOUNDRY
- cloud foundry - 413 Request Entity Too Large
- How to gain authorization to perform requested action, specifically create an instance of a service in Bluemix?
- Installing Spring Cloud Services for Cloudfoundry without OpsManager
- Cloud Foundry Stylized Error Pages
- Does Bluemix include a JBoss runtime?
- What is the difference between Cloud Foundry and Docker?
- How to integrate spring-xd batch jobs with Control-M scheduler
- How to execute curl operation using request module with authorizaion: bearer token?
- delete the output of a join (record in multipe tables)
- How to automate the creation of a vCAP user-defined variable in a Bluemix deployment?
- Cloudfoundry application with Jboss buildpack fails to deploy
- Difference between Cloud Foundry & Pivotal Web Services
- Running cloudfoundry sample app on local sandbox
- Cloudfoundry php-buildpack logging
- Cloud Foundry yaml parse error
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
That will be very helpful if you can come up with zuul managed service in PCF.
Currently what we do is we use spring boot + spring cloud application to develop api gateway. We have to use
spring-cloud-starter-zuuldependency. Then ahead we need to register gateway app with Netflix Eureka service registry.Lastly we refer registered Zuul api gateway in all our client api applications.
Good luck with cf marketplace Zuul managed service :)