Found 8 packages
Package for adding Kubernetes environment variables, ConfigMaps and Secrets to .NET applications.
Dynamic reload config from file for Kubernetes with Config Map. Usage: static IHostBuilder CreateHostBuilder(string[] args) { return Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(args) .ConfigureAppConfiguration((c,b)=>{ b.SetBasePath(Path.Join(AppContext.BaseDirectory,"config")) .AddJsonFile(ConfigMapFileProvider.FromRelativePath("config"), "appsettings.json"); }) .UseConsoleLifetime() ; }
Provides interfaced configuration objects with properties mapped from appSettings or connectionStrings. This allows your IConfiguration to be injected anywhere in your code providing a unit-testable solution to configuration management with no magic strings. See the project home page for further info.
KonfigMap is a .NET global tool to help generate ConfigMap files out of ASP.NET Core json configuration files.
Предоставляет API поставщика конфигурации на основе ресурсов K8S. Позволяет добавить, в качестве источника ConfigMap или Secret Содержащий данные в формате Json или Key/Value.
Adds extension methods for reading Kubernetes Configmaps and Secrets
Project-installable Kustomize configMapGenerator commandline tool. This package can be installed into a project using `DotNetCliToolReference`. * To install as a dotnet global or local tool, use `dotnet-kustomizeconfigmapgenerator` instead.
Provides a mechanism to create a simple Kubernetes Operator in .NET. Can pick up changes to CRDs, ConfigMaps or Secrets, check if a CRD exists and create, replace and delete configmaps and secrets.