Spring Cloud迁移
配置中心用原来的就行,没必要用k8s的secret.yaml管理来做,配置变了还准备重启,好费劲
修改迁移(用k8s服务注册 负载均衡)
1. Spring Cloud Kubernetes 提供了通用的接口来调用Kubernetes服务,让 Spring Cloud 和 Spring Boot 程序能够在 Kubernetes 环境中更好运行。在 Kubernetes 环境中,ETCD 已经拥有了服务发现所必要的信息,没有必要再使用 Eureka,通过 Discovery 就能够获取 Kubernetes ETCD 中注册的服务列表进行服务发现。
2. Spring Cloud Kubernetes Ribbon Ribbon 负载均衡模式有 Service / Pod 两种,在 Service 模式下,可以使用 Kubernetes 原生负载均衡,并通过 Istio 实现服务治理。
直接迁移
Loading...