如何在 micronaut 项目中禁用从 bootstrap.yml 的配置读取?

How to disable reading from configuration from bootstrap.yml in micronaut project?

我有一个带有 bootstrap.yml 配置的 Micronauts 应用程序,当 运行 在 k8 集群中时,它想要只读,但现在当来自 bitbucket 管道的测试 运行 是从 bootstrap 读取并抛出错误,所以我只想在我的 k8 集群 运行 中启用此 bootstrap,我们如何配置这样的?

我找到了解决方案 - 我们可以创建特定于环境的 bootstrap.yml 文件,例如 bootstrap-dev.yml,因此它只能在该特定环境中工作。