Kubernetes Series : Deployments
Introduction In this new article we discuss about Deployments. What is a Deployment? An entity called “ReplicaSet” ensures that a specified number of pod replicas are running at any given time. However, a Deployment is a higher-level concept that manages ReplicaSets and provides declarative updates to Pods along with a lot of other useful features. Therefore, …