Deployments
Deployments automate the process of delivering applications and updates to production environments. They ensure continuous integration and continuous delivery (CI/CD) by managing builds, testing, and releases, enabling faster and more reliable software delivery. Monitoring and rollback mechanisms ensure reliability and quick recovery in case of failures.
The user can describe a desired state in a Deployment, and the Deployment Controller changes the actual state to the desired state at a controlled rate. S/he can define Deployments to create new ReplicaSets, or to remove existing Deployments and adopt all their resources with new Deployments.

When a user selects on a deployment it will show the detailed configuration of the deployment such as. Metadata, Resource information, Rolling update strategy, Pods status, Conditions, Pod Template, Spec, Containers, Volumes.

Use Case of Deployments -
- Continuous Delivery (CD)
- Scaling Applications
- Rolling Updates
- Feature Testing
- Disaster Recovery
More Details: https://kubernetes.io/docs/concepts/workloads/controllers/deployment
Next Page
Pods