Andrew Stakhov
Andrew Stakhov
nuspec files are only used for generating nuget packages, which are predominantly libraries and are not executable artifacts on their own. When we talk about docker images, it's really .net...
@westonsteimel > Also, should we consider eventually having two separate cataloger packages here, one dotnet for the modern cross-platform version (also sometimes referred to as .NET Core) and a separate...
> Another thought I had here is that it would be great to eventually support somehow extracting the version information from the compiled DLLs themselves. I believe that information is...
What you want is `bus-refresh` feature which exists in Spring. While you're waiting for necessary building blocks to be added to spring, you can find the code necessary to do...
You can totally report it back into CRD. It would have to be a custom object though instead of config map to support "status". On Thu, May 21, 2020 at...
I actually think it would make sense to merge that with /env, as logger configuration is very much related to the current state of configuration of the app. On Thu,...
Propose introducing a builder pattern: ```csharp services.AddActuators(cfg => { if (!cfg.Environment.IsDevelopment()) { cfg.AddDefault(); // register common "core" actuators that don't have other dependencies and expose them on /actuator and publish...
I also thought about this today as there are many instances where you may wanna run a precompiled image that expects configuration in very specific format. Imo some kind of...
Looking through the code it actually seems like there is a DynamicClient, but it's weird that it's not using a generics interface and instead relies on kind/api version being parameters....
I'm currently working towards building the necessary building blocks to allows this to happen. While it started as a desire to build controllers with .NET, it morphed a little into...