Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
Context I am currently migrating a Web application from on-prem infrastructure to K8s. The legacy infrastructure relies on defining some tokens in the configuration files and these are replaced d...
#1: Initial revision
How to inject environment configuration values when deploying an Angular application in Kubernetes or similar infrastructure?
## Context I am currently migrating a Web application from on-prem infrastructure to K8s. The legacy infrastructure relies on defining some tokens in the configuration files and these are replaced during the deployment as follows: - ASP.NET Core: appsettings.json tokens are replaced - Angular: replacements are done directly in the bundle js files ## The issue While the .NET Core application features a designated configuration file (appsettings.json) which can be found in the Docker container, the Angular relies on `environment.{env}.ts` files which have their content bundled in the main js file. This prevents one important aspect of the deployment: build (the Docker image) once and deploy in any environment. How to make an Angular application allow its configuration data to be changed after the production build is created? (at Docker container level, not at image level)