Satyam Bala
Satyam Bala
I also had the same issue and it has been fixed after configuring the below in application.yml file. _spring.cloud.discovery.client.health-indicator.enabled: false spring.cloud.kubernetes.discovery.enabled: true # ingress controller service url - minikube service...
Using the default Predicate - RoutePredicateHandlerMapping. More detailed logs: 2024-07-23T07:16:47.174Z DEBUG 1 --- [api-gateway] [or-http-epoll-6] o.s.w.s.adapter.HttpWebHandlerAdapter : [ae8db915-7] HTTP DELETE "/api/v1/test?orgId=111" 2024-07-23T07:16:47.175Z DEBUG 1 --- [api-gateway] [or-http-epoll-6] o.s.w.r.handler.SimpleUrlHandlerMapping : [ae8db915-7]...
Version: org.springframework.cloud:spring-cloud-starter-gateway:jar:4.1.5
Here is the Config: ``` server: port: 8080 spring: application: name: api-gateway cloud: gateway: routes: - id: test-self-read-api uri: http://test-api:8080/ predicates: - Path=/api/v1/test/self - Method=GET - id: test-read-api uri: http://test-api:8080/...