Azure Container Apps
An Azure service that provides a general-purpose, serverless container platform.
686 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi can I use the init container to feed env variables and their values into the container app? if yes then please let me know how..thanks in advance.
This isn't directly possible, but you could have your init container call the ARM REST API to update the environment variables assigned to the container app, from your init container.
Other than that, if you want to pass values between init and main container you would need to store the value externally in database, file store or similar.