Deployment in Kubernetes
Explore Kubernetes deployment concepts to effectively manage application Pods using deployments. Learn how to perform rolling updates to avoid downtime and rollbacks to previous versions. Understand how to work with deployment YAML files and commands to control your Kubernetes applications.
What is deployment?
A deployment creates a managed resource more effectively than a replica set. Deployment makes use of a replica set. Whenever a deployment is created, a replica set also gets created behind the scene. A deployment allows us to describe the lifestyle of an application. It allows us to ...