diff --git a/README.md b/README.md index d0564fb..f638b04 100644 --- a/README.md +++ b/README.md @@ -5352,6 +5352,11 @@ It means they would eventually die and pods are unable to heal so it is recommen
What is a "Deployment" in Kubernetes?
+ +A Kubernetes Deployment is used to tell Kubernetes how to create or modify instances of the pods that hold a containerized application. +Deployments can scale the number of replica pods, enable rollout of updated code in a controlled manner, or roll back to an earlier deployment version if necessary. + +A Deployment is a declarative statement for the desired state for Pods and Replica Sets.