我正在探索 Spring Cloud Kubernetes 的功能,方法是使用它的特性来动态重新加载秘密。但是,我仍然没有得到这个工作。
我有一个简单的 Spring Boot 应用程序,它只打印出安装在 pod 中的秘密内容。这是bootstrap.properties中的配置
spring.cloud.kubernetes.reload.enabled=true
spring.cloud.kubernetes.reload.monitoring-secrets=true
spring.cloud.kubernetes.secrets.enabled=true
spring.cloud.kubernetes.secrets.paths=/etc/secret-volume
management.endpoint.info.enabled=true
management.endpoint.health.enabled=true
management.endpoint.restart.enabled=true
在application.properties中,我定义了获取密钥值的属性:
mysecret.password=${MY-PWD}
在 Spring Boot 应用程序中,我定义了一个将存储秘密值的 bean:
@Configuration
@ConfigurationProperties(prefix = "mysecret")
public class MySecret {
private String password;
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
当我在 minikube 上运行应用程序时,我在日志中看到 Spring 检测到声明的机密并激活配置文件:
16:54:30.887 [main] INFO oscbcPropertySourceBootstrapConfiguration - 定位属性源:[BootstrapPropertySource@1132379993 {name='bootstrapProperties-my-pwd', properties={MY-PWD=qwerty}}] 16:54:30.899 [main] INFO ccrReloadSecretsApplication - 以下配置文件处于活动状态:kubernetes
过了一会儿,我得到下面的日志,上面写着它被添加了一个对秘密的观察者:
16:54:35.460 [OkHttp https://10.96.0.1/...] 调试 ifkcdiWatchConnectionManager - WebSocket 成功打开 16:54:35.460 [main] INFO osckcrEventBasedConfigurationChangeDetector - 添加了新的 Kubernetes 手表:secrets-watch 16:54:35.460 [ main] INFO osckcrEventBasedConfigurationChangeDetector - 已激活 Kubernetes 基于事件的配置更改检测器
然后,当我更改密码时,我得到这条线说不会触发重新加载:
11:20:15.963 [OkHttp https://10.96.0.1/...] WARN osckcrEventBasedConfigurationChangeDetector - 当前的 Confimap PropertySource 数量与从 Kubernetes 加载的不匹配 - 不会发生重新加载
关于这个主题的文档非常稀缺。我这里有什么遗漏的配置吗?
链接到 Spring Boot 应用程序:https ://github.com/Azlop/spring-cloud-kubernetes-reload-secrets