作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 asp net core 项目,我正在 kubernetes 集群中的 linux 容器内部署它。我的 secret 安装在容器的/secrets 文件夹中,我找到了 https://github.com/aspnet/Configuration/tree/master/src/Config.KeyPerFile并尝试使用 builder.AddKeyPerFile("/secrets", false);
加载 secret 。但它不起作用。 configuration["File1"] 返回空,其中 File1 是“/secrets”文件夹中的一个文件,其中包含一个 secret 。
当我在服务代码中执行以下内容时,我能够读取 secret 。
List<KeyValuePair<string, string>> secrets =
new List<KeyValuePair<string, string>>();
foreach (var secretFile in Directory.GetFiles("/secrets", "*.*", System.IO.SearchOption.AllDirectories))
{
secrets.Add(
new KeyValuePair<string, string>(
Path.GetFileName(secretFile), File.ReadAllText(secretFile)));
}
最佳答案
我正在使用 .Net Core 3.1,它可以工作。
new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true)
.AddKeyPerFile("/secret/", optional: true)
.Build();
var file1 = configuration["File1"];
关于c# - 如何使用 AddKeyPerFile 在 linux 容器中加载 secret ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56566095/
我有一个 asp net core 项目,我正在 kubernetes 集群中的 linux 容器内部署它。我的 secret 安装在容器的/secrets 文件夹中,我找到了 https://git
我是一名优秀的程序员,十分优秀!