From b30bb7d41b8176e62b21d5e99c7866d74248a2bb Mon Sep 17 00:00:00 2001
From: Jack McDonnell <52510979+McJacko@users.noreply.github.com>
Date: Wed, 14 Jul 2021 16:24:53 -0700
Subject: [PATCH] Kubernetes Deployment explanation (#139)
* Kubernetes Pod explanation (Jack McDonnell)
* Kubernetes Deployment explanation
---
README.md | 5 +++++
1 file changed, 5 insertions(+)
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.