Promoting a Release to the Production Environment
Understand how to promote application releases to a production environment using Jenkins X in Kubernetes. Learn to verify existing deployments, execute manual promotion commands, and confirm successful deployment. This lesson guides you through managing release versions and handling asynchronous pull requests to ensure production readiness.
Now that we feel our new release is production-ready, we can promote it to production. Before we do that, we’ll check whether we already have something running in production.
Getting applications running in production
The output states that no applications were found in environments production.
Getting applications running in staging
How about staging? We must have the release of our go-demo-6 application running there. Let’s double-check.
The output is as follows:
For what we’re trying to do, the important piece of the information is the version displayed in the STAGING column.
⚠️ Before ...