DevOps / Jenkins Interview questions
What is Continuous Delivery and Continuous Deployment in Jenkins.
Continuous Delivery (CD) is the process of building, testing, and delivering improvements to the software code. This is still a manual process and deployment happens by clicking a button.
Continuous deployment goes one step further than continuous delivery. With this practice, every change that passes all stages of your production pipeline is released to your customers. There's no human intervention, and only a failed test will prevent a new change to be deployed to production.
More Related questions...