Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
springcloud开发中,对于服务间访问如何讲流量转发到本地项目上?毕竟服务间的访问并没有通过svc,而是直接在注册中心中获取的各个Pod的地址,然后进行负载均衡调用的请求,像这样的请求如何讲流浪转发到本地项目中呢?
The text was updated successfully, but these errors were encountered:
spring: application: name: @artifactId@ cloud: nacos: server-addr: ${NACOS_HOST:lcdp-register}:${NACOS_PORT:8848} discovery: namespace: @nacos.namespace.id@ ip: ${spring.application.name}-${profiles.active} config: namespace: @nacos.namespace.id@
修改IP配置,让它注册内部域名而不是IP
springcloud开发中,对于服务间访问如何讲流量转发到本地项目上?毕竟服务间的访问并没有通过svc,而是直接在注册中心中获取的各个Pod的地址,然后进行负载均衡调用的请求,像这样的请求如何讲流浪转发到本地项目中呢?
The text was updated successfully, but these errors were encountered: