Spring Cloud Kubernetes的DiscoveryClient
该项目提供了Kubernetes的Discovery Client
的实现。通过此客户端,您可以按名称查询Kubernetes端点(请参阅服务)。Kubernetes API服务器通常将服务公开为代表http
和https
地址的端点的集合,并且客户端可以从作为Pod运行的Spring Boot应用程序进行访问。
Spring Cloud Kubernetes Ribbon项目也使用此发现功能来获取为要进行负载平衡的应用程序定义的端点列表。
您可以通过在项目内部添加以下依赖项来免费获得这些东西:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-kubernetes</artifactId> </dependency>
要启用DiscoveryClient
的加载,请将@EnableDiscoveryClient
添加到相应的配置或应用程序类中,如以下示例所示:
@SpringBootApplication @EnableDiscoveryClient public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
然后,您可以简单地通过自动装配将客户端注入代码中,如以下示例所示:
@Autowired private DiscoveryClient discoveryClient;
您可以通过在application.properties
中设置以下属性来选择从所有命名空间启用DiscoveryClient
:
spring.cloud.kubernetes.discovery.all-namespaces=true
如果出于任何原因需要禁用DiscoveryClient
,则可以在application.properties
中设置以下属性:
spring.cloud.kubernetes.discovery.enabled=false
某些Spring Cloud组件使用DiscoveryClient
来获取有关本地服务实例的信息。为此,您需要将Kubernetes服务名称与spring.application.name
属性对齐。
spring.application.name
对在Kubernetes中为该应用程序注册的名称无效
Spring Cloud Kubernetes也可以监视Kubernetes服务目录中的更改并相应地更新DiscoveryClient
实现。为了启用此功能,您需要在应用程序的配置类上添加@EnableScheduling
。
更多建议: