此版本仍在开发中,尚未被视为稳定版本。如需最新的稳定版本,请使用 Spring Cloud Kubernetes 3.1.4spring-doc.cn

PropertySource重新加载

此功能在 2020.0 版本中已弃用。请参阅 Spring Cloud Kubernetes Configuration Watcher 控制器,以实现相同功能的另一种方法。

某些应用程序可能需要检测外部属性源上的更改并更新其内部状态以反映新配置。 Spring Cloud Kubernetes 的 reload 功能能够在相关或更改时触发应用程序重新加载。ConfigMapSecretspring-doc.cn

默认情况下,此功能处于禁用状态。您可以使用 configuration 属性(例如,在 file) 中启用它。 请注意,这将仅启用对 configmap 的监控(即:将设置为 )。 如果要启用密钥监控,则必须通过 : 显式完成此操作。spring.cloud.kubernetes.reload.enabled=trueapplication.propertiesspring.cloud.kubernetes.reload.monitoring-config-mapstruespring.cloud.kubernetes.reload.monitoring-secrets=truespring-doc.cn

支持以下级别的重新加载(通过设置属性):spring.cloud.kubernetes.reload.strategyspring-doc.cn

  • refresh(默认):仅带有 Comments 或 reloaded 的配置 bean。 此重新加载级别利用 Spring Cloud Context 的刷新功能。@ConfigurationProperties@RefreshScopespring-doc.cn

  • restart_context:整个 Spring 正常重启。使用新配置重新创建 Bean。 为了使 restart context 功能正常工作,您必须启用并公开 restart actuator 端点ApplicationContextspring-doc.cn

management:
  endpoint:
    restart:
      enabled: true
  endpoints:
    web:
      exposure:
        include: restart
  • shutdown:Spring 关闭以激活容器的重新启动。 使用此级别时,请确保所有非守护进程线程的生命周期都绑定到 ,并且将复制控制器或副本集配置为重新启动 Pod。ApplicationContextApplicationContextspring-doc.cn

假设使用默认设置( mode )启用了重新加载功能,则当 config map 更改时,将刷新以下 bean:refreshspring-doc.cn

@Configuration
@ConfigurationProperties(prefix = "bean")
public class MyConfig {

    private String message = "a message that can be changed live";

    // getter and setters

}

要查看更改有效地发生,您可以创建另一个定期打印消息的 bean,如下所示spring-doc.cn

@Component
public class MyBean {

    @Autowired
    private MyConfig config;

    @Scheduled(fixedDelay = 5000)
    public void hello() {
        System.out.println("The message is: " + config.getMessage());
    }
}

您可以使用 更改应用程序打印的消息,如下所示:ConfigMapspring-doc.cn

apiVersion: v1
kind: ConfigMap
metadata:
  name: reload-example
data:
  application.properties: |-
    bean.message=Hello World!

对 关联的 中命名的属性的任何更改都会反映在 输出。更一般地说,与以 Comments 字段定义的值为前缀的属性关联的更改将被检测并反映在应用程序中。本章前面介绍了如何将 ConfigMap 与 Pod 相关联bean.messageConfigMapprefix@ConfigurationPropertiesspring-doc.cn

重新加载功能支持两种操作模式:spring-doc.cn

  • 事件 (默认):使用 Kubernetes API (Web 套接字) 监视配置映射或 secret 中的更改。 任何事件都会对配置产生重新检查,如果发生更改,则会重新加载。 需要服务帐户上的角色才能侦听配置映射更改。密钥需要更高级别的角色(例如 ) (默认情况下,不监控密钥)。vieweditspring-doc.cn

  • 轮询:定期从配置映射和密钥重新创建配置,以查看其是否已更改。 您可以使用 属性 配置轮询周期,默认为 15 秒。 它需要与受监控属性源相同的角色。 这意味着,例如,对文件挂载的密钥源使用轮询不需要特定权限。spring.cloud.kubernetes.reload.periodspring-doc.cn