Deployment
Master deployment strategies and CI/CD workflows
4 articles
Understanding build commands and init container commands
Build commands run during image creation to install dependencies and compile assets, while init container commands execute before each application startup for tasks like database migrations. Use build commands for preparing your code and init container commands for runtime setup that needs fresh configuration.
Understanding build secrets vs runtime secrets
Understand the difference between build secrets and runtime secrets
When changes require redeployment
When you make changes to your application's configuration like environment variables, domains, or services, these changes won't take effect immediately. Instead, your application will be marked as needing deployment, and you'll need to trigger a new deployment to apply all pending changes.
Deployment Strategies
Learn about different deployment strategies and when to use them.