Deployment
Understand what is deployment
What is Deployment?
Deployment is a higher-level abstraction that manages a set of replicas of the application. It will ensure the desired number of replicas are running and available, just like ReplicaSet, but it offers more features like rolling updates and rollbacks.
Here is an example, currently you have 3 instances of an application, you want to upgrade them, but you don't want to upgrade all of them at once and you want to update it one by one. This is where Deployment comes into play and this upgrade process is called rolling update.
Rollout and Rollback (Revert/Undo)
Deployment rollout and rollback allows the developer to update the application without downtime and can revert back to previous versions as needed.
Rollout
- A process of updating the application to a new version.
- It will gradually replace the old pods with new ones, ensuring that the application remains available during the update.
Rollback
- A process of reverting to a previous version of the application if something goes wrong during the rollout.
Here is an process, when you first create a deployment, it will trigger a rollout. When you update the deployment, it will trigger another rollout. If something goes wrong, you can rollback to the previous version.
Deployment Strategy
Recreate Strategy
For recreate strategy, all existing pods will be terminated and new pods will be created with the new configuration. This will cause downtime during the update.
Rolling update
Rolling update is the default deployment strategy. It will gradually replaces old pods with new ones. Therefore, it will ensure the application available during the update process, minimizing downtime.